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-case | |
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-case')
-rw-r--r-- | fc-case/fc-case.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fc-case/fc-case.c b/fc-case/fc-case.c index e0548f02..6f8fdb49 100644 --- a/fc-case/fc-case.c +++ b/fc-case/fc-case.c @@ -112,10 +112,10 @@ utf8_size (FcChar32 ucs4) } static FcChar8 *foldChars; -int nfoldChars; -int maxFoldChars; -FcChar32 minFoldChar; -FcChar32 maxFoldChar; +static int nfoldChars; +static int maxFoldChars; +static FcChar32 minFoldChar; +static FcChar32 maxFoldChar; static void addChar (FcChar32 c) |