Change scope of local variable to static
authorHugo Villeneuve <hugo@hugovil.com>
Thu, 21 Nov 2013 04:56:46 +0000 (23:56 -0500)
committerHugo Villeneuve <hugo@hugovil.com>
Thu, 21 Nov 2013 05:33:25 +0000 (00:33 -0500)
src/pgmwin.c

index 69410bc..0d52dc5 100644 (file)
@@ -48,7 +48,7 @@ enum
        N_COLUMNS,
 };
 
-char *col_names[N_COLUMNS] = {
+static char *col_names[N_COLUMNS] = {
        "BPT",
        "Address",
        "B0",