diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2010-12-20 13:38:22 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2010-12-20 13:38:22 +0100 |
commit | 4f4b0101c4bab996ad6d3258f8036c001a45000b (patch) | |
tree | 89f9251e5d65f7437c9afabb6f1826eaa881fbc4 | |
parent | ab1246e0b5ffa0ac8d7b8e8fbe7c51bc22c8e751 (diff) |
rate_ctr: No need to include the inttypes.h
There should not be any u_int*_t types in this file, no need
to include this file. It is breaking compilation with the last
x86 build of GNU ARM for GCC 3.4.
-rw-r--r-- | src/rate_ctr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rate_ctr.c b/src/rate_ctr.c index f58b5c4a..80ef55b2 100644 --- a/src/rate_ctr.c +++ b/src/rate_ctr.c @@ -21,7 +21,6 @@ */ #include <stdint.h> -#include <inttypes.h> #include <string.h> #include <osmocore/utils.h> |