diff options
author | Richard Jones <rjones@redhat.com> | 2010-05-13 17:05:41 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-05-13 17:07:45 +0100 |
commit | 11a2ad8c9a1da7fe7f8142be69312d0cb5979e0a (patch) | |
tree | 46413614d367637fc4ec270e702e0151ff04c047 /fish/fish.c | |
parent | 520d895383c6e2b3eff1c4e3761624ebbb5f8b09 (diff) | |
download | libguestfs-11a2ad8c9a1da7fe7f8142be69312d0cb5979e0a.tar.gz libguestfs-11a2ad8c9a1da7fe7f8142be69312d0cb5979e0a.tar.xz libguestfs-11a2ad8c9a1da7fe7f8142be69312d0cb5979e0a.zip |
guestfish: Fix build error in 'print_shell_quote' function.
Amend commit 1c6ed48bd3cd471dc so the prototype of
'print_shell_quote' function is correct.
Diffstat (limited to 'fish/fish.c')
-rw-r--r-- | fish/fish.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fish/fish.c b/fish/fish.c index b7601b9c..a630cdca 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -66,7 +66,7 @@ static void cmdline (char *argv[], int optind, int argc); static void initialize_readline (void); static void cleanup_readline (void); static void add_history_line (const char *); -static int print_shell_quote (FILE *stream, const char *str); +static void print_shell_quote (FILE *stream, const char *str); /* Currently open libguestfs handle. */ guestfs_h *g; |