Fix: lttng_destroy_session_no_wait: return 0 on success
[lttng-tools.git] / src / lib / lttng-ctl / lttng-ctl.c
index 1dce981b64242d64c094703223352c4b6be1381b..c304a37dba4b269e8ac8740cdb0de93d521051a1 100644 (file)
@@ -2053,7 +2053,7 @@ int lttng_destroy_session_no_wait(const char *session_name)
        enum lttng_error_code ret_code;
 
        ret_code = lttng_destroy_session_ext(session_name, NULL);
-       return ret_code == LTTNG_OK ? ret_code : -ret_code;
+       return ret_code == LTTNG_OK ? 0 : -ret_code;
 }
 
 /*
This page took 0.023517 seconds and 5 git commands to generate.