Fix: comparison of unsigned enum expression >= 0
authorDavid Goulet <dgoulet@efficios.com>
Mon, 25 Nov 2013 19:15:51 +0000 (14:15 -0500)
committerDavid Goulet <dgoulet@efficios.com>
Tue, 26 Nov 2013 16:04:52 +0000 (11:04 -0500)
Signed-off-by: David Goulet <dgoulet@efficios.com>
Conflicts:
src/common/ust-consumer/ust-consumer.c

src/common/ust-consumer/ust-consumer.c

index 6be3ed9761f0b8d40a07deafcdc7bda0853f8be0..e92e7109715e2bc96002ac643381d11fe0333a49 100644 (file)
@@ -1964,14 +1964,14 @@ int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
                goto end;
        }
 
-       ret_code = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
+       ret = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
                        key, offset, len, channel, timer);
-       if (ret_code >= 0) {
+       if (ret >= 0) {
                /*
                 * Only send the status msg if the sessiond is alive meaning a positive
                 * ret code.
                 */
-               (void) consumer_send_status_msg(ctx->consumer_metadata_socket, ret_code);
+               (void) consumer_send_status_msg(ctx->consumer_metadata_socket, ret);
        }
        ret = 0;
 
This page took 0.029813 seconds and 4 git commands to generate.