aboutsummaryrefslogtreecommitdiff
path: root/miscutils/conspy.c
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-10-29 11:46:52 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2010-10-29 11:46:52 +0200
commitfb132e47370378474c68ad22c1c0cb2ccee178de (patch)
tree4f78d0fdd1c2fa2341c7d9bb17f9d98d099a238c /miscutils/conspy.c
parent66cb7bed33da605674c3d24734466b8e8a60e337 (diff)
downloadbusybox-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/conspy.c')
-rw-r--r--miscutils/conspy.c8
1 files changed, 4 insertions, 4 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