diff options
author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-10-29 11:46:52 +0200 |
---|---|---|
committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-10-29 11:46:52 +0200 |
commit | fb132e47370378474c68ad22c1c0cb2ccee178de (patch) | |
tree | 4f78d0fdd1c2fa2341c7d9bb17f9d98d099a238c /miscutils | |
parent | 66cb7bed33da605674c3d24734466b8e8a60e337 (diff) | |
download | busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.tar.gz busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.tar.bz2 busybox-w32-fb132e47370378474c68ad22c1c0cb2ccee178de.zip |
whitespace cleanup
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/conspy.c | 8 | ||||
-rw-r--r-- | miscutils/ubi_attach_detach.c | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/miscutils/conspy.c b/miscutils/conspy.c index 040fa86f3..723b4208a 100644 --- a/miscutils/conspy.c +++ b/miscutils/conspy.c | |||
@@ -420,19 +420,19 @@ int conspy_main(int argc UNUSED_PARAM, char **argv) | |||
420 | 420 | ||
421 | if (G.remote.cursor_x < G.x) { | 421 | if (G.remote.cursor_x < G.x) { |
422 | G.x = G.remote.cursor_x; | 422 | G.x = G.remote.cursor_x; |
423 | i = 0; // force refresh | 423 | i = 0; // force refresh |
424 | } | 424 | } |
425 | if (nx > G.x) { | 425 | if (nx > G.x) { |
426 | G.x = nx; | 426 | G.x = nx; |
427 | i = 0; // force refresh | 427 | i = 0; // force refresh |
428 | } | 428 | } |
429 | if (G.remote.cursor_y < G.y) { | 429 | if (G.remote.cursor_y < G.y) { |
430 | G.y = G.remote.cursor_y; | 430 | G.y = G.remote.cursor_y; |
431 | i = 0; // force refresh | 431 | i = 0; // force refresh |
432 | } | 432 | } |
433 | if (ny > G.y) { | 433 | if (ny > G.y) { |
434 | G.y = ny; | 434 | G.y = ny; |
435 | i = 0; // force refresh | 435 | i = 0; // force refresh |
436 | } | 436 | } |
437 | } | 437 | } |
438 | 438 | ||
diff --git a/miscutils/ubi_attach_detach.c b/miscutils/ubi_attach_detach.c index 18ffd4df2..b74d97b68 100644 --- a/miscutils/ubi_attach_detach.c +++ b/miscutils/ubi_attach_detach.c | |||
@@ -26,8 +26,8 @@ | |||
26 | #include "libbb.h" | 26 | #include "libbb.h" |
27 | #include <mtd/ubi-user.h> | 27 | #include <mtd/ubi-user.h> |
28 | 28 | ||
29 | #define OPTION_M (1 << 0) | 29 | #define OPTION_M (1 << 0) |
30 | #define OPTION_D (1 << 1) | 30 | #define OPTION_D (1 << 1) |
31 | 31 | ||
32 | #define do_attach (ENABLE_UBIATTACH && \ | 32 | #define do_attach (ENABLE_UBIATTACH && \ |
33 | (!ENABLE_UBIDETACH || (applet_name[3] == 'a'))) | 33 | (!ENABLE_UBIDETACH || (applet_name[3] == 'a'))) |