diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-07-22 17:54:37 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-07-22 22:59:01 +0200 |
commit | 7802531da03626cfded497239e29a8ec2e4a3285 (patch) | |
tree | 38063ff21555c2dd7eeabd68c6c933701c489f07 | |
parent | 07b0785c207cd46751abcb17cf44168621bbc479 (diff) |
rootdir.c: Fix compiler warning
* rootdir.c (rootdir_gc_meminfo): Use unsigned long constant.
-rw-r--r-- | rootdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, |