Making global vars static

modified:   src/nms.h
This commit is contained in:
Brian Barto 2016-04-15 17:30:55 -04:00
parent e2ab6966a7
commit 00dd424e9b
1 changed files with 2 additions and 2 deletions

View File

@ -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 *, ...);