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-01-18 10:21:49 +0000 |
commit | f6a21c1e0d44f9db409ce6583be7b5bc694767a8 (patch) | |
tree | 094c647716259c7408069ca8980071111524f76e /fish/fish.c | |
parent | deadcc73260a82c210417382412f80d14c5292db (diff) | |
download | libguestfs-f6a21c1e0d44f9db409ce6583be7b5bc694767a8.tar.gz libguestfs-f6a21c1e0d44f9db409ce6583be7b5bc694767a8.tar.xz libguestfs-f6a21c1e0d44f9db409ce6583be7b5bc694767a8.zip |
fish: exit_on_error is a local variable.
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; |