From: Jim Meyering Date: Mon, 28 Mar 2005 18:41:09 +0000 (+0000) Subject: (speeds): Declare this array to be static. X-Git-Tag: CPPI-1_12~1170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d7f7c39c11f5d78fe43bc34a7fcc323e37d3c0ff;p=thirdparty%2Fcoreutils.git (speeds): Declare this array to be static. --- diff --git a/src/stty.c b/src/stty.c index 220c00bf94..b36176e272 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},