Browse Source

helper: remove whitespace between while and left parenthesis

Marco Wang 4 years ago
parent
commit
56492a98f3
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/helpers.h

+ 1
- 1
src/helpers.h View File

@@ -35,7 +35,7 @@ light_loglevel_t light_loglevel;
35 35
     do {\
36 36
         log("could not open '%s' for " act, filename);\
37 37
         log("Verify it exists with the right permissions");\
38
-    } while (0)
38
+    } while(0)
39 39
 
40 40
 #define LIGHT_PERMERR(x)         LIGHT_PERMLOG(x, LIGHT_ERR)
41 41
 #define LIGHT_PERMWARN(x)        LIGHT_PERMLOG(x, LIGHT_WARN)