diff options
author | wm4 <wm4@nowhere> | 2015-05-01 21:17:56 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-05-01 21:51:10 +0200 |
commit | 6814830b9a7740e789a6965f6e4f8da4ba67dd42 (patch) | |
tree | 91ad9abe9c97f712171f001d67bdd6d5e376e842 /osdep | |
parent | d3a3cfe54c26055c0686ea1b9a245eb7f88af521 (diff) |
timer: add "static" to a variable
Diffstat (limited to 'osdep')
-rw-r--r-- | osdep/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/timer.c b/osdep/timer.c index 7c57e1ef1c..643d7cbb9b 100644 --- a/osdep/timer.c +++ b/osdep/timer.c @@ -28,7 +28,7 @@ #include "timer.h" static uint64_t raw_time_offset; -pthread_once_t timer_init_once = PTHREAD_ONCE_INIT; +static pthread_once_t timer_init_once = PTHREAD_ONCE_INIT; static void do_timer_init(void) { |