diff options
author | Denys Vlasenko | 2022-08-30 16:41:17 +0200 |
---|---|---|
committer | Denys Vlasenko | 2022-08-30 16:41:17 +0200 |
commit | fe73c8d55795a8fe7e95fc2c00af6899817b96b8 (patch) | |
tree | 1b772243f00c63d16ee4cf8bf6f80a6c7a53ee91 /editors/vi.c | |
parent | 58598eb7093561d914a6254697e137b815f1fdfc (diff) | |
download | busybox-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.zip busybox-fe73c8d55795a8fe7e95fc2c00af6899817b96b8.tar.gz |
*: style fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors/vi.c')
-rw-r--r-- | editors/vi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c index 1f997e8..2645afe 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -4327,7 +4327,7 @@ static void do_cmd(int c) c1 = get_one_char(); // ZQ means to exit without saving if (c1 == 'Q') { - editing=0; + editing = 0; optind = cmdline_filecnt; break; } |