diff options
author | fluxgen <fluxgen> | 2002-04-03 12:08:54 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-04-03 12:08:54 (GMT) |
commit | 05761f6059fb1dc12f6922b06c297b5f10780a05 (patch) | |
tree | 66f0ffb5067833b5f4c641c8e58da6ecb6035621 /src/Timer.cc | |
parent | 968f9b5d8e0397bd812ce41073a317eb20fdf9df (diff) | |
download | fluxbox-05761f6059fb1dc12f6922b06c297b5f10780a05.zip fluxbox-05761f6059fb1dc12f6922b06c297b5f10780a05.tar.bz2 |
Fixed some signed/unsigned warnings
Diffstat (limited to 'src/Timer.cc')
-rw-r--r-- | src/Timer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Timer.cc b/src/Timer.cc index 47f70de..cf2733e 100644 --- a/src/Timer.cc +++ b/src/Timer.cc | |||
@@ -21,11 +21,11 @@ | |||
21 | 21 | ||
22 | //use GNU extensions | 22 | //use GNU extensions |
23 | #ifndef _GNU_SOURCE | 23 | #ifndef _GNU_SOURCE |
24 | # define _GNU_SOURCE | 24 | #define _GNU_SOURCE |
25 | #endif // _GNU_SOURCE | 25 | #endif // _GNU_SOURCE |
26 | 26 | ||
27 | #ifdef HAVE_CONFIG_H | 27 | #ifdef HAVE_CONFIG_H |
28 | # include "../config.h" | 28 | #include "../config.h" |
29 | #endif // HAVE_CONFIG_H | 29 | #endif // HAVE_CONFIG_H |
30 | 30 | ||
31 | #include "Timer.hh" | 31 | #include "Timer.hh" |