X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fish%2Fedit.c;h=c72ad1d81872dc16c7b56bc3e6d27aef330fb8b6;hb=107a76ad3680fda05cfd58136d62eeab4e77a8dc;hp=5519bb95fcfc830be8d0d593489e84bd5b7fb02a;hpb=d70248333edf8a5b5f509609cf2c8f7fd77d5e05;p=libguestfs.git diff --git a/fish/edit.c b/fish/edit.c index 5519bb9..c72ad1d 100644 --- a/fish/edit.c +++ b/fish/edit.c @@ -29,24 +29,6 @@ /* guestfish edit command, suggested by Ján Ondrej, implemented by RWMJ */ -static int -xwrite (int fd, const void *buf, size_t len) -{ - int r; - - while (len > 0) { - r = write (fd, buf, len); - if (r == -1) { - perror ("write"); - return -1; - } - buf += r; - len -= r; - } - - return 0; -} - static char * load_file (const char *filename, int *len_r) {