Fix: comparison of unsigned enum expression >= 0
[lttng-tools.git] / 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.024843 seconds and 4 git commands to generate.