소스 검색

Avoid redondant checking

Abdullah ibn Nadjo 7 년 전
부모
커밋
2f14acb12e
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1
    2
      src/light.c

+ 1
- 2
src/light.c 파일 보기

@@ -273,8 +273,7 @@ LIGHT_BOOL light_initialize(int argc, char** argv)
273 273
       return FALSE;
274 274
     }
275 275
   }
276
-
277
-  if(!light_controllerAccessible(light_Configuration.specifiedController))
276
+  else if(!light_controllerAccessible(light_Configuration.specifiedController))
278 277
   {
279 278
     LIGHT_ERR("selected controller is not valid, make sure this application is run as root.");
280 279
     return FALSE;