1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

Removing static and making extern

This commit is contained in:
Rohit Jain
2018-10-11 16:51:29 -07:00
parent 705e0b18ab
commit a47f6e6f2d
2 changed files with 6 additions and 1 deletions

View File

@ -110,7 +110,7 @@ extern "C" {
/*-****************************************
* Console log
******************************************/
static int g_utilDisplayLevel;
extern int g_utilDisplayLevel;
#define UTIL_DISPLAY(...) fprintf(stderr, __VA_ARGS__)
#define UTIL_DISPLAYLEVEL(l, ...) { if (g_utilDisplayLevel>=l) { UTIL_DISPLAY(__VA_ARGS__); } }