diff options
author | Patrick Lam <plam@MIT.EDU> | 2006-04-06 04:33:11 +0000 |
---|---|---|
committer | Patrick Lam <plam@MIT.EDU> | 2006-04-06 04:33:11 +0000 |
commit | 0d745819a9ec491349d4e122a7d44d689b2d3479 (patch) | |
tree | d75c1143b73a307fb10d10e2c87e7e5e6c21b1a5 /fc-match | |
parent | b17cf498be69f483e6355ae468f7239165df3ffb (diff) |
Fix intel compiler warnings: make many variables static, eliminate
duplicate names, reduce variable scopes, unsigned/signed printf
formatting.
reviewed by: plam
Diffstat (limited to 'fc-match')
-rw-r--r-- | fc-match/fc-match.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fc-match/fc-match.c b/fc-match/fc-match.c index 3ddba74..2666620 100644 --- a/fc-match/fc-match.c +++ b/fc-match/fc-match.c @@ -47,7 +47,7 @@ #undef _GNU_SOURCE #define _GNU_SOURCE #include <getopt.h> -const struct option longopts[] = { +static const struct option longopts[] = { {"sort", 0, 0, 's'}, {"version", 0, 0, 'V'}, {"verbose", 0, 0, 'v'}, |