diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-11 22:04:22 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-11 22:04:25 +0200 |
commit | e364ad0628b5930a671ae5be863b960f4bd748a8 (patch) | |
tree | 1427ac128d3530f696e49b6f5e482488399c9b6e /src/cgroup-show.c | |
parent | 10f8e83cbb10c73b980c9b3b895ac044e600ba0c (diff) |
clang: fix numerous little issues found with clang-analyzer
Diffstat (limited to 'src/cgroup-show.c')
-rw-r--r-- | src/cgroup-show.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgroup-show.c b/src/cgroup-show.c index 24d2ba398d..af44729a51 100644 --- a/src/cgroup-show.c +++ b/src/cgroup-show.c @@ -138,7 +138,7 @@ static int show_cgroup_one_by_path(const char *path, const char *prefix, unsigne printf("%s%s %*lu %s\n", prefix, (more || i < n-1) ? "\342\224\234" : "\342\224\224", - ilog10(biggest), + (int) ilog10(biggest), (unsigned long) pids[i], strna(t)); |