]> git.saurik.com Git - redis.git/blobdiff - src/zmalloc.c
Fixed bug in AOF rewrite not working because of integer overflow
[redis.git] / src / zmalloc.c
index b438017dc7c3b7fad6994e8bd2ffae7ca7bbdb5d..aa3ccfe963d8fa6e67eacca70dc2ce953b973c27 100644 (file)
@@ -262,7 +262,7 @@ size_t zmalloc_get_rss(void) {
     return t_info.resident_size;
 }
 #else
-float zmalloc_get_rss(void) {
+size_t zmalloc_get_rss(void) {
     /* If we can't get the RSS in an OS-specific way for this system just
      * return the memory usage we estimated in zmalloc()..
      *