diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-26 22:49:09 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-26 22:49:09 +0000 |
commit | fe1ca2347d52d022a503a81d3a7117a93bb707c6 (patch) | |
tree | c5d9d0b9c06b6cd3fe60226443774ea6338e24cb | |
parent | 3d0472cc0132d55891f7f177f9b345036902a2ad (diff) |
merge latest (4.3.99.16) from XFree86 (vendor) branchXORG-RELEASE-1-BASEXEVIE-MERGEXEVIE-BASEXINERAMA_2XEVIE
-rw-r--r-- | mkcfm.c | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -16,7 +16,7 @@ * The Original Software is CID font code that was developed by Silicon * Graphics, Inc. */ -/* $XFree86: xc/programs/mkcfm/mkcfm.c,v 1.12 2002/12/09 17:30:12 dawes Exp $ */ +/* $XFree86: xc/programs/mkcfm/mkcfm.c,v 1.13 2003/05/27 22:26:56 tsi Exp $ */ #include <stdio.h> #include <stdlib.h> @@ -59,17 +59,9 @@ FontEntryRec entry; int main(int argc, char **argv) { - char temp[CID_NAME_MAX]; - int failed; - char *p; - - temp[0] = '\0'; - CIDFillVals(&vals); CIDRegisterFontFileFunctions(); - failed = 0; - if (argc == 1) { if (!DoDirectory(DEFAULTCID)) { fprintf(stderr, "Default CID directory %s not found.\n", @@ -80,7 +72,7 @@ main(int argc, char **argv) exit(1); } } else if(argc == 2) { - if ((p = strstr(argv[1], "CID")) == NULL || !DoDirectory(argv[1])) { + if (strstr(argv[1], "CID") == NULL || !DoDirectory(argv[1])) { fprintf(stderr, "Specified CID directory not found. CFM files not created.\n"); exit(1); |