Clean-up: remove negative check against unsigned value
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 1 Aug 2016 19:27:33 +0000 (15:27 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 1 Aug 2016 19:27:33 +0000 (15:27 -0400)
Reported-by Coverity Scan:
CID 1360536 (#1 of 1): Unsigned compared against 0 (NO_EFFECT)

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/common/defaults.c

index a39f1885c73f31c75770bd4dae69eb08cbd286f0..3bb42280f0ce7b9f0950094901ac3bc307046336 100644 (file)
@@ -117,7 +117,7 @@ static void __attribute__((constructor)) init_default_pthread_attr(void)
                selected_ss = DEFAULT_LTTNG_THREAD_STACK_SIZE;
        }
 
-       if (rlim.rlim_max >= 0 && selected_ss > rlim.rlim_max) {
+       if (rlim.rlim_max > 0 && selected_ss > rlim.rlim_max) {
                WARN("Your system's stack size restrictions (%zu bytes) may be too low for the LTTng daemons to function properly, please set the stack size limit to at leat %zu bytes to ensure reliable operation",
                        (size_t) rlim.rlim_max, (size_t) DEFAULT_LTTNG_THREAD_STACK_SIZE);
                selected_ss = (size_t) rlim.rlim_max;
This page took 0.026803 seconds and 5 git commands to generate.