X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/b882056c93f3e3afe5fde9d62fb569ce30a76a76..4c378d7f6caae6783c64ed177f86c9098ea3da78:/src/redis-check-dump.c

diff --git a/src/redis-check-dump.c b/src/redis-check-dump.c
index 987e1db3..93b9c99d 100644
--- a/src/redis-check-dump.c
+++ b/src/redis-check-dump.c
@@ -538,7 +538,8 @@ void printErrorStack(entry *e) {
 
     /* display error stack */
     for (i = 0; i < errors.level; i++) {
-        printf("0x%08lx - %s\n", errors.offset[i], errors.error[i]);
+        printf("0x%08lx - %s\n",
+            (unsigned long) errors.offset[i], errors.error[i]);
     }
 }