From 93b76533735fc1d9fd666787acd65db8507d9119 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Tue, 1 Sep 2015 18:01:53 +1200 Subject: Enforced staticness --- getfreq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'getfreq.c') diff --git a/getfreq.c b/getfreq.c index c5a92bc..c655ffd 100644 --- a/getfreq.c +++ b/getfreq.c @@ -22,8 +22,8 @@ #define MAX_FREQS 50 #define FREQ_LENGTH 14 -char freqs[MAX_CORES][MAX_FREQS][FREQ_LENGTH]; -int total_freqs; // Number of freqs for core 0 +static char freqs[MAX_CORES][MAX_FREQS][FREQ_LENGTH]; +static int total_freqs; // Number of freqs for core 0 /*********************************************************************** -- cgit v1.1