diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-01-18 10:21:49 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-03-08 14:51:26 +0000 |
commit | 97e66259f39f96d95e185e54292641c6ad3395bb (patch) | |
tree | f4da47fd36ab2db460d63173f683ae9e1a5a5ebd /fish/fish.c | |
parent | a6a6d761e119a66d07813c6ac145c6285ce6ea92 (diff) | |
download | libguestfs-97e66259f39f96d95e185e54292641c6ad3395bb.tar.gz libguestfs-97e66259f39f96d95e185e54292641c6ad3395bb.tar.xz libguestfs-97e66259f39f96d95e185e54292641c6ad3395bb.zip |
fish: exit_on_error is a local variable.
(cherry picked from commit f6a21c1e0d44f9db409ce6583be7b5bc694767a8)
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 265464e7..711073a2 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -69,7 +69,7 @@ int verbose = 0; int remote_control_listen = 0; int remote_control_csh = 0; int remote_control = 0; -int exit_on_error = 1; +static int exit_on_error = 1; int command_num = 0; int keys_from_stdin = 0; int echo_keys = 0; |