diff options
-rw-r--r-- | editors/patch.c | 2 | ||||
-rw-r--r-- | editors/patch_toybox.c | 2 | ||||
-rw-r--r-- | shell/ash.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/editors/patch.c b/editors/patch.c index 0bde2cab3..764f0f183 100644 --- a/editors/patch.c +++ b/editors/patch.c | |||
@@ -554,7 +554,7 @@ int patch_main(int argc UNUSED_PARAM, char **argv) | |||
554 | int oldsum, newsum, del = 0; | 554 | int oldsum, newsum, del = 0; |
555 | char *name; | 555 | char *name; |
556 | 556 | ||
557 | oldsum = TT.oldline + TT.oldlen; | 557 | oldsum = TT.oldline + TT.oldlen; |
558 | newsum = TT.newline + TT.newlen; | 558 | newsum = TT.newline + TT.newlen; |
559 | 559 | ||
560 | name = reverse ? oldname : newname; | 560 | name = reverse ? oldname : newname; |
diff --git a/editors/patch_toybox.c b/editors/patch_toybox.c index 7f3234e66..04bd98eea 100644 --- a/editors/patch_toybox.c +++ b/editors/patch_toybox.c | |||
@@ -522,7 +522,7 @@ int patch_main(int argc UNUSED_PARAM, char **argv) | |||
522 | int oldsum, newsum, del = 0; | 522 | int oldsum, newsum, del = 0; |
523 | char *s, *name; | 523 | char *s, *name; |
524 | 524 | ||
525 | oldsum = TT.oldline + TT.oldlen; | 525 | oldsum = TT.oldline + TT.oldlen; |
526 | newsum = TT.newline + TT.newlen; | 526 | newsum = TT.newline + TT.newlen; |
527 | 527 | ||
528 | name = reverse ? oldname : newname; | 528 | name = reverse ? oldname : newname; |
diff --git a/shell/ash.c b/shell/ash.c index ea835527e..fbf3efce2 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -12840,7 +12840,7 @@ init(void) | |||
12840 | /* bash re-enables SIGHUP which is SIG_IGNed on entry. | 12840 | /* bash re-enables SIGHUP which is SIG_IGNed on entry. |
12841 | * Try: "trap '' HUP; bash; echo RET" and type "kill -HUP $$" | 12841 | * Try: "trap '' HUP; bash; echo RET" and type "kill -HUP $$" |
12842 | */ | 12842 | */ |
12843 | signal(SIGHUP, SIG_DFL); | 12843 | signal(SIGHUP, SIG_DFL); |
12844 | 12844 | ||
12845 | /* from var.c: */ | 12845 | /* from var.c: */ |
12846 | { | 12846 | { |