From 03fbca46faaef7c455349b7d19ff929b457321be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Nohlg=C3=A5rd?= Date: Thu, 11 Feb 2016 15:19:00 +0100 Subject: [PATCH] tests/xtimer_shift_on_compare: Add static to compilation-unit local variables --- tests/xtimer_shift_on_compare/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/xtimer_shift_on_compare/main.c b/tests/xtimer_shift_on_compare/main.c index 7349b2a200..ea2d567bcd 100644 --- a/tests/xtimer_shift_on_compare/main.c +++ b/tests/xtimer_shift_on_compare/main.c @@ -25,10 +25,10 @@ #define ITERATIONS 128 #define MAXSHIFT 8 -unsigned min[MAXSHIFT]; -unsigned max[MAXSHIFT]; -unsigned avg[MAXSHIFT]; -unsigned total[MAXSHIFT]; +static unsigned min[MAXSHIFT]; +static unsigned max[MAXSHIFT]; +static unsigned avg[MAXSHIFT]; +static unsigned total[MAXSHIFT]; int main(void) {