From: Denis Vlasenko Date: Sat, 18 Oct 2008 19:04:37 +0000 (-0000) Subject: vi: whitespace fix X-Git-Tag: 1_13_0~99 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1dfeeeb65137fe9af27faaf844ba98e1b3bc9c12;p=oweals%2Fbusybox.git vi: whitespace fix --- diff --git a/editors/vi.c b/editors/vi.c index 7b213dfb3..acbede359 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -214,9 +214,9 @@ struct globals { // Should be just enough to hold a key sequence, // but CRASHME mode uses it as generated command buffer too #if ENABLE_FEATURE_VI_CRASHME - char readbuffer[128]; + char readbuffer[128]; #else - char readbuffer[8]; + char readbuffer[8]; #endif #define STATUS_BUFFER_LEN 200 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user