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>
Mon, 25 Nov 2013 19:59:32 +0000 (14:59 -0500)
Signed-off-by: David Goulet <dgoulet@efficios.com>
src/common/ust-consumer/ust-consumer.c

index c6bd5196b4b6cec77e93f7df4af1e076ed952f07..1a7b2cd4b5a01edd85cf83569d69109d454b6698 100644 (file)
@@ -2264,14 +2264,14 @@ int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
 
        health_code_update();
 
-       ret_code = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
+       ret = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
                        key, offset, len, channel, timer, wait);
-       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.027477 seconds and 5 git commands to generate.