whitespace cleanup

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
This commit is contained in:
Denys Vlasenko
2010-10-29 11:46:52 +02:00
parent 66cb7bed33
commit fb132e4737
69 changed files with 231 additions and 268 deletions

View File

@@ -420,19 +420,19 @@ int conspy_main(int argc UNUSED_PARAM, char **argv)
if (G.remote.cursor_x < G.x) {
G.x = G.remote.cursor_x;
i = 0; // force refresh
i = 0; // force refresh
}
if (nx > G.x) {
G.x = nx;
i = 0; // force refresh
i = 0; // force refresh
}
if (G.remote.cursor_y < G.y) {
G.y = G.remote.cursor_y;
i = 0; // force refresh
i = 0; // force refresh
}
if (ny > G.y) {
G.y = ny;
i = 0; // force refresh
i = 0; // force refresh
}
}

View File

@@ -26,8 +26,8 @@
#include "libbb.h"
#include <mtd/ubi-user.h>
#define OPTION_M (1 << 0)
#define OPTION_D (1 << 1)
#define OPTION_M (1 << 0)
#define OPTION_D (1 << 1)
#define do_attach (ENABLE_UBIATTACH && \
(!ENABLE_UBIDETACH || (applet_name[3] == 'a')))