summaryrefslogtreecommitdiff
path: root/rootdir.c
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2013-07-22 17:54:37 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-07-22 22:59:01 +0200
commit7802531da03626cfded497239e29a8ec2e4a3285 (patch)
tree38063ff21555c2dd7eeabd68c6c933701c489f07 /rootdir.c
parent07b0785c207cd46751abcb17cf44168621bbc479 (diff)
rootdir.c: Fix compiler warning
* rootdir.c (rootdir_gc_meminfo): Use unsigned long constant.
Diffstat (limited to 'rootdir.c')
-rw-r--r--rootdir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rootdir.c b/rootdir.c
index 31e2d8c..9fc326a 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,