From 64d80c70bf298d741da964d07f3607e9eee41190 Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Sun, 28 Apr 2013 17:31:30 -0300 Subject: [PATCH] Fix typo in variable name Signed-off-by: Claudio Matsuoka --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index e2c0472..0997c71 100644 --- a/src/main.c +++ b/src/main.c @@ -88,7 +88,7 @@ static void sigcont_handler(int sig) set_tty(); } #else - foreground_in = foregound_out = 1; + foreground_in = foreground_out = 1; #endif if (sig != 0) @@ -442,7 +442,7 @@ int main(int argc, char **argv) #ifdef SIGTSTP sigcont_handler(0); #else - foreground_in = foregound_out = 1; + foreground_in = foreground_out = 1; #endif if (foreground_out && opt.verbose > 0) { info_frame(&mi, &fi, &control, refresh_status);