From 6bb9d0fa0465fc4c39d70f6e5a187623e1051d84 Mon Sep 17 00:00:00 2001 From: bg- Date: Tue, 23 Jan 2007 12:24:35 +0000 Subject: [PATCH] * Missing volatile. --- cpu/avr/dev/clock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/avr/dev/clock.c b/cpu/avr/dev/clock.c index 2be477c38..8640d57e2 100644 --- a/cpu/avr/dev/clock.c +++ b/cpu/avr/dev/clock.c @@ -5,7 +5,7 @@ #include #include -static clock_time_t count; +static volatile clock_time_t count; /*---------------------------------------------------------------------------*/ SIGNAL(SIG_OUTPUT_COMPARE0)