From 64f5abe1e7f8157301b54c45e7f2977e46470f6c Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 27 Nov 2013 03:32:06 -0500 Subject: [PATCH] Fix: clarify end of packet error Fixes #686 Signed-off-by: Mathieu Desnoyers --- formats/ctf/ctf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formats/ctf/ctf.c b/formats/ctf/ctf.c index a9d90031..c9eeafa5 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; } -- 2.34.1