]> git.saurik.com Git - redis.git/commitdiff
Fixed compilation on FreeBSD
authorantirez <antirez@gmail.com>
Thu, 20 Jan 2011 09:59:25 +0000 (10:59 +0100)
committerantirez <antirez@gmail.com>
Thu, 20 Jan 2011 09:59:49 +0000 (10:59 +0100)
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()..
      *