25 lines
641 B
Diff
25 lines
641 B
Diff
diff --git a/src/helpers.c b/src/helpers.c
|
|
index c7bc4de..00e6098 100644
|
|
--- a/src/helpers.c
|
|
+++ b/src/helpers.c
|
|
@@ -9,6 +9,7 @@
|
|
#include <errno.h> // errno
|
|
#include <libgen.h> // dirname
|
|
|
|
+light_loglevel_t light_loglevel;
|
|
|
|
bool light_file_read_uint64(char const *filename, uint64_t *val)
|
|
{
|
|
diff --git a/src/helpers.h b/src/helpers.h
|
|
index f73714b..4a92753 100644
|
|
--- a/src/helpers.h
|
|
+++ b/src/helpers.h
|
|
@@ -21,7 +21,7 @@ typedef enum {
|
|
LIGHT_NOTE_LEVEL
|
|
} light_loglevel_t;
|
|
|
|
-light_loglevel_t light_loglevel;
|
|
+extern light_loglevel_t light_loglevel;
|
|
|
|
#define LIGHT_LOG(lvl, fp, fmt, args...)\
|
|
if(light_loglevel >= lvl)\
|