From: Denis Vlasenko Date: Sun, 18 Nov 2007 11:47:25 +0000 (-0000) Subject: stty: mark variable as static X-Git-Tag: 1_9_0~88 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2a587df80a148e497d10344c79f2b94d3bce6aaf;p=oweals%2Fbusybox.git stty: mark variable as static --- diff --git a/coreutils/stty.c b/coreutils/stty.c index 06e3b0ed5..849f61540 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c @@ -412,7 +412,7 @@ enum { }; /* The width of the screen, for output wrapping */ -unsigned max_col = 80; /* default */ +static unsigned max_col = 80; /* default */ struct globals { /* Current position, to know when to wrap */