summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko2010-10-05 00:13:02 +0200
committerDenys Vlasenko2010-10-05 00:13:02 +0200
commitcacb2cd281392135871364c3beb1f8143396ccc0 (patch)
tree152bee10f6285dc0874ada5b7b8ca783a7b32fd2
parentafc7b4c0d83ab82eb20cedae5d9676c3a21af4bf (diff)
downloadbusybox-cacb2cd281392135871364c3beb1f8143396ccc0.zip
busybox-cacb2cd281392135871364c3beb1f8143396ccc0.tar.gz
*: whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--editors/patch.c2
-rw-r--r--editors/patch_toybox.c2
-rw-r--r--shell/ash.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/editors/patch.c b/editors/patch.c
index 0bde2ca..764f0f1 100644
--- a/editors/patch.c
+++ b/editors/patch.c
@@ -554,7 +554,7 @@ int patch_main(int argc UNUSED_PARAM, char **argv)
int oldsum, newsum, del = 0;
char *name;
- oldsum = TT.oldline + TT.oldlen;
+ oldsum = TT.oldline + TT.oldlen;
newsum = TT.newline + TT.newlen;
name = reverse ? oldname : newname;
diff --git a/editors/patch_toybox.c b/editors/patch_toybox.c
index 7f3234e..04bd98e 100644
--- a/editors/patch_toybox.c
+++ b/editors/patch_toybox.c
@@ -522,7 +522,7 @@ int patch_main(int argc UNUSED_PARAM, char **argv)
int oldsum, newsum, del = 0;
char *s, *name;
- oldsum = TT.oldline + TT.oldlen;
+ oldsum = TT.oldline + TT.oldlen;
newsum = TT.newline + TT.newlen;
name = reverse ? oldname : newname;
diff --git a/shell/ash.c b/shell/ash.c
index ea83552..fbf3efc 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -12840,7 +12840,7 @@ init(void)
/* bash re-enables SIGHUP which is SIG_IGNed on entry.
* Try: "trap '' HUP; bash; echo RET" and type "kill -HUP $$"
*/
- signal(SIGHUP, SIG_DFL);
+ signal(SIGHUP, SIG_DFL);
/* from var.c: */
{