aboutsummaryrefslogtreecommitdiff
path: root/getfreq.c
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-09-01 18:01:53 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2015-09-01 18:01:53 +1200
commit93b76533735fc1d9fd666787acd65db8507d9119 (patch)
tree05f9cfe409f172be706dfd8625145c5d2bb7da54 /getfreq.c
parenta3e613bae93526edebb6546c6c9d02d6587145f3 (diff)
downloadparamano-93b76533735fc1d9fd666787acd65db8507d9119.tar.xz
Enforced staticness
Diffstat (limited to 'getfreq.c')
-rw-r--r--getfreq.c4
1 files changed, 2 insertions, 2 deletions
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
/***********************************************************************