From 7802531da03626cfded497239e29a8ec2e4a3285 Mon Sep 17 00:00:00 2001
From: Justus Winter <4winter@informatik.uni-hamburg.de>
Date: Mon, 22 Jul 2013 17:54:37 +0200
Subject: rootdir.c: Fix compiler warning

* rootdir.c (rootdir_gc_meminfo): Use unsigned long constant.
---
 rootdir.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rootdir.c b/rootdir.c
index 31e2d8c6..9fc326af 100644
--- a/rootdir.c
+++ b/rootdir.c
@@ -300,7 +300,7 @@ rootdir_gc_meminfo (void *hook, char **contents, ssize_t *contents_len)
       ,
       (long unsigned) hbi.memory_size / 1024,
       (long unsigned) vmstats.free_count * PAGE_SIZE / 1024,
-      0,
+      0UL,
       (long unsigned) cache_stats.cache_count * PAGE_SIZE / 1024,
       (long unsigned) vmstats.active_count * PAGE_SIZE / 1024,
       (long unsigned) vmstats.inactive_count * PAGE_SIZE / 1024,
-- 
cgit v1.2.3