diff options
author | antirez <antirez@gmail.com> | 2012-02-14 16:11:46 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2012-02-14 16:11:46 +0100 |
commit | 7a3e372025b2a54486ce52d706b1da95be4b7e7e (patch) | |
tree | b49fbfbd221554032fc46cda4c4cca20888a912e /src/zipmap.c | |
parent | 18aa2b87b6db7fa79b0596590aa385adcbc64e53 (diff) | |
download | redis-7a3e372025b2a54486ce52d706b1da95be4b7e7e.tar.gz |
endian.c/h -> endianconv.c/h to avoid issues with broken libraries search paths.
Diffstat (limited to 'src/zipmap.c')
-rw-r--r-- | src/zipmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zipmap.c b/src/zipmap.c index 65ed29c89..1f11fd429 100644 --- a/src/zipmap.c +++ b/src/zipmap.c @@ -80,7 +80,7 @@ #include <string.h> #include <assert.h> #include "zmalloc.h" -#include "endian.h" +#include "endianconv.h" #define ZIPMAP_BIGLEN 254 #define ZIPMAP_END 255 |