From 4d251e2240975c1b35092545a547b64a881f0174 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 9047b7c2..db6615b4 100644 --- a/formats/ctf/ctf.c +++ b/formats/ctf/ctf.c @@ -556,7 +556,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