Skip to content

Commit 64d80c7

Browse files
committedApr 28, 2013
Fix typo in variable name
Signed-off-by: Claudio Matsuoka <[email protected]>
1 parent b46e145 commit 64d80c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ static void sigcont_handler(int sig)
8888
set_tty();
8989
}
9090
#else
91-
foreground_in = foregound_out = 1;
91+
foreground_in = foreground_out = 1;
9292
#endif
9393

9494
if (sig != 0)
@@ -442,7 +442,7 @@ int main(int argc, char **argv)
442442
#ifdef SIGTSTP
443443
sigcont_handler(0);
444444
#else
445-
foreground_in = foregound_out = 1;
445+
foreground_in = foreground_out = 1;
446446
#endif
447447
if (foreground_out && opt.verbose > 0) {
448448
info_frame(&mi, &fi, &control, refresh_status);

0 commit comments

Comments
 (0)
Please sign in to comment.