diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-18 11:47:25 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-11-18 11:47:25 +0000 |
commit | 2a587df80a148e497d10344c79f2b94d3bce6aaf (patch) | |
tree | aefe032a3c030c33a2b80dc7e097e7ae65f45c93 /coreutils | |
parent | 49d15890e0e445baccc93080e2b99899374fa8ec (diff) | |
download | busybox-w32-2a587df80a148e497d10344c79f2b94d3bce6aaf.tar.gz busybox-w32-2a587df80a148e497d10344c79f2b94d3bce6aaf.tar.bz2 busybox-w32-2a587df80a148e497d10344c79f2b94d3bce6aaf.zip |
stty: mark variable as static
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/stty.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
412 | }; | 412 | }; |
413 | 413 | ||
414 | /* The width of the screen, for output wrapping */ | 414 | /* The width of the screen, for output wrapping */ |
415 | unsigned max_col = 80; /* default */ | 415 | static unsigned max_col = 80; /* default */ |
416 | 416 | ||
417 | struct globals { | 417 | struct globals { |
418 | /* Current position, to know when to wrap */ | 418 | /* Current position, to know when to wrap */ |