X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fdf.c;h=b5c4980c780869f0f3cbe3d7cee5e83947952991;hb=3d9b2a707d5739a2b80157a69b57e0cda40cd7bf;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;