diff options
author | antirez <antirez@gmail.com> | 2014-07-23 18:01:51 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-07-23 18:02:02 +0200 |
commit | 7eb47ae290a05403972ebacffb173a67a6bafabe (patch) | |
tree | 180c8378ae7b3457710b4c8546d16845be0767ae /src/util.c | |
parent | 0ce352c19f296c37893f5f506af3c4fa7f496d37 (diff) | |
download | redis-7eb47ae290a05403972ebacffb173a67a6bafabe.tar.gz |
Fix util.c compilation by including stdint.h.
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util.c b/src/util.c index 74ed8a043..a0bb2b84c 100644 --- a/src/util.c +++ b/src/util.c @@ -37,6 +37,7 @@ #include <unistd.h> #include <sys/time.h> #include <float.h> +#include <stdint.h> #include "util.h" |