Remove fcntl wrapper
[lttng-tools.git] / src / bin / lttng-sessiond / client.cpp
index 0680e14fd581eb28817baf0e077659845bded1bf..d6d894cfbeced044cc463a43be08e9271af29a34 100644 (file)
@@ -40,6 +40,7 @@
 #include <lttng/session-internal.hpp>
 #include <lttng/userspace-probe-internal.hpp>
 
+#include <fcntl.h>
 #include <pthread.h>
 #include <signal.h>
 #include <stddef.h>
@@ -2214,10 +2215,8 @@ skip_domain:
                                        cmd_ctx->lsm.u.rotation_set_schedule.type;
                value = cmd_ctx->lsm.u.rotation_set_schedule.value;
 
-               ret = cmd_rotation_set_schedule(cmd_ctx->session,
-                                               set_schedule,
-                                               schedule_type,
-                                               value);
+               ret = cmd_rotation_set_schedule(
+                       cmd_ctx->session, set_schedule, schedule_type, value);
                if (ret != LTTNG_OK) {
                        goto error;
                }
This page took 0.02562 seconds and 4 git commands to generate.