Run clang-format on the whole tree
[lttng-tools.git] / src / common / testpoint / testpoint.cpp
index 4dfeadd81eb9aad643d31b5200f0d59e38e5e921..753b79594754c8e96875faec3ccfa0a7c6d5c72d 100644 (file)
@@ -8,12 +8,12 @@
 #ifndef NTESTPOINT
 
 #define _LGPL_SOURCE
-#include <dlfcn.h>  /* for dlsym   */
+#include "testpoint.hpp"
+
+#include <dlfcn.h> /* for dlsym   */
 #include <stdlib.h> /* for getenv  */
 #include <string.h> /* for strncmp */
 
-#include "testpoint.hpp"
-
 /* Environment variable used to enable the testpoints facilities. */
 static const char *lttng_testpoint_env_var = "LTTNG_TESTPOINT_ENABLE";
 
@@ -28,8 +28,7 @@ static void __attribute__((constructor)) lttng_testpoint_check(void)
        char *testpoint_env_val = NULL;
 
        testpoint_env_val = getenv(lttng_testpoint_env_var);
-       if (testpoint_env_val != NULL
-                       && (strncmp(testpoint_env_val, "1", 1) == 0)) {
+       if (testpoint_env_val != NULL && (strncmp(testpoint_env_val, "1", 1) == 0)) {
                lttng_testpoint_activated = 1;
        }
 }
This page took 0.02276 seconds and 4 git commands to generate.