diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-05-10 09:43:11 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-05-10 09:43:11 +0000 |
commit | a8c440bb418af0a8cd6a8e012a6f2cc3cafcee29 (patch) | |
tree | 78924fd08e2312c5aac2094632d3d7179b4d37d0 /Build/source/texk/dvipsk/afm2tfm.c | |
parent | c1662ec68d00b00641d12f2bf30658916311f6e1 (diff) |
remove more useless casts to void
reintroduce a few such cast to avoid complier warnings
git-svn-id: svn://tug.org/texlive/trunk@18185 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipsk/afm2tfm.c')
-rw-r--r-- | Build/source/texk/dvipsk/afm2tfm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/dvipsk/afm2tfm.c b/Build/source/texk/dvipsk/afm2tfm.c index 1c851cac63a..b2dc69ae1bf 100644 --- a/Build/source/texk/dvipsk/afm2tfm.c +++ b/Build/source/texk/dvipsk/afm2tfm.c @@ -479,7 +479,7 @@ handlechar(void) { /* an input line beginning with C */ /* Ignore vertical metrics information */ if (*param == 'W' && *(param + 1) == 'Y') { expect("WY"); - (void)paramnum(); + paramnum(); expect(";"); } expect("N"); @@ -1687,7 +1687,7 @@ default: fprintf(stderr, "Unknown option %s %s ignored.\n", argv[2], argv[3]); if ((afmin=fopen(inname, "r"))==NULL) error("! can't open afm input file"); #endif /* KPATHSEA */ - SET_BINARY(fileno(afmin)); + (void)SET_BINARY(fileno(afmin)); if (argc>3 || (argc==3 && *argv[2]=='-')) { error("! need at most two non-option arguments"); @@ -1979,7 +1979,7 @@ readencoding(char *enc) #else afmin = fopen(enc, "r"); #endif - SET_BINARY(fileno(afmin)); + (void)SET_BINARY(fileno(afmin)); param = 0; if (afmin == 0) #ifdef KPATHSEA |