diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-28 18:41:09 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-28 18:41:09 +0000 |
commit | d7f7c39c11f5d78fe43bc34a7fcc323e37d3c0ff (patch) | |
tree | b598c3b0e0666aa63f0defdee2a658bed606e3d4 | |
parent | 9ea824018a03d3b836d5a6072e9d6b332e9b338a (diff) | |
download | coreutils-d7f7c39c11f5d78fe43bc34a7fcc323e37d3c0ff.tar.xz |
(speeds): Declare this array to be static.
-rw-r--r-- | src/stty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stty.c b/src/stty.c index 220c00bf9..b36176e27 100644 --- a/src/stty.c +++ b/src/stty.c @@ -1703,7 +1703,7 @@ struct speed_map unsigned long int value; /* Numeric value. */ }; -struct speed_map speeds[] = +static struct speed_map speeds[] = { {"0", B0, 0}, {"50", B50, 50}, |