From 00dd424e9b97664c30b4a728d265fb6d065d56b6 Mon Sep 17 00:00:00 2001 From: Brian Barto Date: Fri, 15 Apr 2016 17:30:55 -0400 Subject: [PATCH] Making global vars static modified: src/nms.h --- src/nms.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nms.h b/src/nms.h index 7ce9b18..9a862fc 100644 --- a/src/nms.h +++ b/src/nms.h @@ -32,8 +32,8 @@ struct winpos { }; // Globals -char nmsprintBuffer[10000]; -char *display = NULL; +static char nmsprintBuffer[10000]; +static char *display = NULL; // Function prototypes void nmsprintf(const char *, ...);