diff options
author | Patrick Lam <plam@MIT.EDU> | 2006-02-21 15:40:18 +0000 |
---|---|---|
committer | Patrick Lam <plam@MIT.EDU> | 2006-02-21 15:40:18 +0000 |
commit | b023dbd38410521a459758498f99d3a48cdd313d (patch) | |
tree | f85590b6c7cde49cb82ca7a83d3f455a7430ced7 /fc-list | |
parent | 2b90aee36399ec13ba3af929311b37d9494adab6 (diff) |
Eliminate unused vars reported by Intel's compiler.
reviewed by: plam
Diffstat (limited to 'fc-list')
-rw-r--r-- | fc-list/fc-list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fc-list/fc-list.c b/fc-list/fc-list.c index 48fbb601..d8a33645 100644 --- a/fc-list/fc-list.c +++ b/fc-list/fc-list.c @@ -85,7 +85,7 @@ static void usage (char *program) int main (int argc, char **argv) { - int verbose = 0; + /*int verbose = 0;*/ int i; FcObjectSet *os = 0; FcFontSet *fs; @@ -105,7 +105,7 @@ main (int argc, char **argv) FC_MAJOR, FC_MINOR, FC_REVISION); exit (0); case 'v': - verbose = 1; + /* verbose = 1; */ break; default: usage (argv[0]); |