Fix: handle error checking should compare against NULL
[babeltrace.git] / lib / context.c
index 209cfde260582b99c8f90d137cc16e4d47d4cfaa..dc7736689170e10da3ba1164f543c79e334fdbe3 100644 (file)
@@ -107,7 +107,7 @@ int bt_context_add_trace(struct bt_context *ctx, const char *path,
 
        /* Create an handle for the trace */
        handle = bt_trace_handle_create(ctx);
-       if (handle < 0) {
+       if (!handle) {
                fprintf(stderr, "[error] [Context] Creating trace handle %s .\n\n",
                                path);
                ret = -1;
This page took 0.022743 seconds and 4 git commands to generate.