Fix: lttng_destroy_session_no_wait: return 0 on success
[lttng-tools.git] / src / lib / lttng-ctl / lttng-ctl.c
index ad4974a1395cd4d284a3c56b3ac10bf4178c0381..b28656ee19be5fb8e70d4f372e147fea05d2419b 100644 (file)
@@ -2128,7 +2128,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.024251 seconds and 4 git commands to generate.