From d5c7d133ad413e3f9e722c7611f57bc2bfeff64a Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 7 Dec 2014 13:24:12 -0500 Subject: [PATCH] Make tablePanic static; it should not be exported. --- wintable/new/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wintable/new/main.c b/wintable/new/main.c index 98f815f..bd3bc03 100644 --- a/wintable/new/main.c +++ b/wintable/new/main.c @@ -39,7 +39,7 @@ enum { nTableColumnTypes, }; -void (*tablePanic)(const char *, DWORD) = NULL; +static void (*tablePanic)(const char *, DWORD) = NULL; #define panic(...) (*tablePanic)(__VA_ARGS__, GetLastError()) #define abort $$$$ // prevent accidental use of abort()