Ver código fonte

main: remove whitespace between if and left parenthesis

Marco Wang 4 anos atrás
pai
commit
71f7755cb1
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2
    2
      src/main.c

+ 2
- 2
src/main.c Ver arquivo

@@ -11,12 +11,12 @@
11 11
 int main(int argc, char **argv)
12 12
 {
13 13
     light_context_t *light_ctx = light_initialize(argc, argv);
14
-    if (light_ctx == NULL) {
14
+    if(light_ctx == NULL) {
15 15
         LIGHT_ERR("Initialization failed");
16 16
         return LIGHT_RETURNVAL_INITFAIL;
17 17
     }
18 18
 
19
-    if (!light_execute(light_ctx)) {
19
+    if(!light_execute(light_ctx)) {
20 20
         LIGHT_ERR("Execution failed");
21 21
         light_free(light_ctx);
22 22
         return LIGHT_RETURNVAL_EXECFAIL;