Fix erroneous warning/error messages
authorSimon Marchi <simon.marchi@polymtl.ca>
Thu, 6 Dec 2012 16:21:10 +0000 (11:21 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 6 Dec 2012 16:21:10 +0000 (11:21 -0500)
This led to user confusion.

Signed-off-by: Simon Marchi <simon.marchi@polymtl.ca>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
lib/context.c

index 9c1159860ebc7a0d7af512f0ede5cc5250cdb154..5516e494f2bbb74c68be2a7924e2fa091935cf3e 100644 (file)
@@ -90,16 +90,16 @@ int bt_context_add_trace(struct bt_context *ctx, const char *path,
        if (path) {
                td = fmt->open_trace(path, O_RDONLY, packet_seek, NULL);
                if (!td) {
-                       fprintf(stderr, "[warning] [Context] Cannot open_trace of the format %s .\n\n",
-                                       path);
+                       fprintf(stderr, "[warning] [Context] Cannot open_trace of format %s at path %s.\n\n",
+                                       format_name, path);
                        ret = -1;
                        goto end;
                }
        } else {
                td = fmt->open_mmap_trace(stream_list, packet_seek, metadata);
                if (!td) {
-                       fprintf(stderr, "[error] [Context] Cannot open_trace of the format %s .\n\n",
-                                       path);
+                       fprintf(stderr, "[error] [Context] Cannot open_mmap_trace of format %s.\n\n",
+                                       format_name);
                        ret = -1;
                        goto end;
                }
This page took 0.025248 seconds and 4 git commands to generate.