X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fdf.c;h=b5c4980c780869f0f3cbe3d7cee5e83947952991;hb=e3f371fff23fa01fc8cedc030ffa9e38b9a3bdc3;hp=563760d20b4404be2a86d1f89423053a0d1d4282;hpb=d7569c00787fb92a8cd2f08c537ea1662f987901;p=libguestfs.git diff --git a/daemon/df.c b/daemon/df.c index 563760d..b5c4980 100644 --- a/daemon/df.c +++ b/daemon/df.c @@ -37,7 +37,7 @@ do_df (void) r = command (&out, &err, "df", NULL); if (r == -1) { - reply_with_error ("df: %s", err); + reply_with_error ("%s", err); free (out); free (err); return NULL; @@ -58,7 +58,7 @@ do_df_h (void) r = command (&out, &err, "df", "-h", NULL); if (r == -1) { - reply_with_error ("df -h: %s", err); + reply_with_error ("%s", err); free (out); free (err); return NULL;