diff options
Diffstat (limited to 'daemon/df.c')
-rw-r--r-- | daemon/df.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/df.c b/daemon/df.c index 7aa6f4fd..cce41a0e 100644 --- a/daemon/df.c +++ b/daemon/df.c @@ -33,7 +33,7 @@ do_df (void) int r; char *out, *err; - NEED_ROOT (, return NULL); + NEED_ROOT (0, return NULL); r = command (&out, &err, "df", NULL); if (r == -1) { @@ -54,7 +54,7 @@ do_df_h (void) int r; char *out, *err; - NEED_ROOT (, return NULL); + NEED_ROOT (0, return NULL); r = command (&out, &err, "df", "-h", NULL); if (r == -1) { |