diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-05-23 10:40:08 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-05-23 10:40:08 +0200 |
commit | 805d5bb95aacfaecde4d668beecff31570eaa2ca (patch) | |
tree | 45783911af63238948a54dc2aaefb0fe2804a01d /console-client/timer.h | |
parent | ef1312fb2e17d15d695dc29be9c3abc25584ba10 (diff) |
console-client: fix build with -O0
* console-client/timer.h (fetch_jiffies): Make function `static inline'.
Diffstat (limited to 'console-client/timer.h')
-rw-r--r-- | console-client/timer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/console-client/timer.h b/console-client/timer.h index 4204192e..8a923ad0 100644 --- a/console-client/timer.h +++ b/console-client/timer.h @@ -54,7 +54,7 @@ int timer_remove (struct timer_list *timer); /* Change the expiration time of the timer TIMER to EXPIRES. */ void timer_change (struct timer_list *timer, long long expires); -extern inline long long +static inline long long fetch_jiffies () { extern volatile struct mapped_time_value *timer_mapped_time; |