From: Mathieu Desnoyers Date: Wed, 27 Nov 2013 08:32:06 +0000 (-0500) Subject: Fix: clarify end of packet error X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=64f5abe1e7f8157301b54c45e7f2977e46470f6c;p=deliverable%2Fbabeltrace.git Fix: clarify end of packet error Fixes #686 Signed-off-by: Mathieu Desnoyers --- diff --git a/formats/ctf/ctf.c b/formats/ctf/ctf.c index a9d900319..c9eeafa59 100644 --- a/formats/ctf/ctf.c +++ b/formats/ctf/ctf.c @@ -559,7 +559,7 @@ int ctf_read_event(struct bt_stream_pos *ppos, struct ctf_stream_definition *str return 0; error: - fprintf(stderr, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n"); + fprintf(stderr, "[error] Unexpected end of packet. Either the trace data stream is corrupted or metadata description does not match data layout.\n"); return ret; }