소스 검색

Removed global variable definition in header

Hubert Badocha 2 년 전
부모
커밋
eae912ca7f
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    0
      src/helpers.c
  2. 1
    1
      src/helpers.h

+ 1
- 0
src/helpers.c 파일 보기

@@ -9,6 +9,7 @@
9 9
 #include <errno.h> // errno
10 10
 #include <libgen.h> // dirname 
11 11
 
12
+light_loglevel_t light_loglevel;
12 13
 
13 14
 bool light_file_read_uint64(char const *filename, uint64_t *val)
14 15
 {

+ 1
- 1
src/helpers.h 파일 보기

@@ -21,7 +21,7 @@ typedef enum {
21 21
     LIGHT_NOTE_LEVEL
22 22
 } light_loglevel_t;
23 23
 
24
-light_loglevel_t light_loglevel;
24
+extern light_loglevel_t light_loglevel;
25 25
 
26 26
 #define LIGHT_LOG(lvl, fp, fmt, args...)\
27 27
     if(light_loglevel >= lvl)\