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 a1ec706d..7127c001 100644 --- a/daemon/df.c +++ b/daemon/df.c @@ -33,7 +33,7 @@ do_df (void) int r; char *out, *err; - NEED_ROOT (0, return NULL); + NEED_ROOT (, 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 (0, return NULL); + NEED_ROOT (, return NULL); r = command (&out, &err, "df", "-h", NULL); if (r == -1) { |