Clean-up: liblttng-ctl: fix -Wshadow error in lttng_enable_event_with_exclusions
[lttng-tools.git] / src / lib / lttng-ctl / lttng-ctl.c
index 6deab78486efe7b69c18645481ccc23b065b600a..29ebe9c9ea99ccb76fae9c5d753bf456c53264e5 100644 (file)
@@ -1270,15 +1270,15 @@ int lttng_enable_event_with_exclusions(struct lttng_handle *handle,
 
                assert(fd_count == 0 || fd_count == 1);
                if (fd_count == 1) {
-                       struct fd_handle *handle =
+                       struct fd_handle *h =
                                        lttng_payload_view_pop_fd_handle(&view);
 
-                       if (!handle) {
+                       if (!h) {
                                goto mem_error;
                        }
 
-                       fd_to_send = fd_handle_get_fd(handle);
-                       fd_handle_put(handle);
+                       fd_to_send = fd_handle_get_fd(h);
+                       fd_handle_put(h);
                }
 
                ret = lttng_ctl_ask_sessiond_fds_varlen(&lsm,
This page took 0.02346 seconds and 4 git commands to generate.