X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Ffill.c;h=5a391aac70a738c5fc2b35fbf2a4a6d87d3529ce;hp=955150253c5f45505631650b0c8102b5da6358ff;hb=2bec01ba1fcceb4880aa991e599920be9b68996a;hpb=688bdc1a068a6c0bea58addd04d5bbe6dc1940c4 diff --git a/daemon/fill.c b/daemon/fill.c index 9551502..5a391aa 100644 --- a/daemon/fill.c +++ b/daemon/fill.c @@ -38,12 +38,12 @@ do_fill (int c, int len, const char *path) char buf[BUFSIZ]; if (c < 0 || c > 255) { - reply_with_error ("fill: %d: byte number must be in range 0..255", c); + reply_with_error ("%d: byte number must be in range 0..255", c); return -1; } memset (buf, c, BUFSIZ); if (len < 0) { - reply_with_error ("fill: %d: length is < 0", len); + reply_with_error ("%d: length is < 0", len); return -1; } len_sz = (size_t) len;