浏览代码

Merge pull request #135 from badochov/compilation_fix

Removed global variable definition in header
Fredrik Svantesson 2 年前
父节点
当前提交
c5fb45423e
没有帐户链接到提交者的电子邮件
共有 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)\