summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipsk/download.c
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-05-10 00:58:37 +0000
committerKarl Berry <karl@freefriends.org>2010-05-10 00:58:37 +0000
commit59bb55528c277eecb879be61afc11eec0e65dd08 (patch)
tree6773d939ddd4a3290376ae2c1e945f0d73204eee /Build/source/texk/dvipsk/download.c
parente3216395f89dca4ac988ded326a8d1d6a05a6cdb (diff)
remove useless casts to void
git-svn-id: svn://tug.org/texlive/trunk@18177 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipsk/download.c')
-rw-r--r--Build/source/texk/dvipsk/download.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/texk/dvipsk/download.c b/Build/source/texk/dvipsk/download.c
index 8b408ee9ad4..ae4c4ef6fe1 100644
--- a/Build/source/texk/dvipsk/download.c
+++ b/Build/source/texk/dvipsk/download.c
@@ -257,10 +257,10 @@ download(charusetype *p, int psfont)
* Sorry this bug has been in here so long. -tgr
*/
fontscale = curfnt->scaledsize * conv;
- (void)sprintf(nextstring, "%g", fontscale);
+ sprintf(nextstring, "%g", fontscale);
cmdout(nextstring);
- (void)strcpy(nextstring, "/");
- (void)strcat(nextstring, rf->PSname);
+ strcpy(nextstring, "/");
+ strcat(nextstring, rf->PSname);
cmdout(nextstring);
/* end of changed section - Rob */
cmdout("rf");
@@ -509,7 +509,7 @@ downpsfont(charusetype *p, charusetype *all)
if(GridCount!=0 || extraGlyphs) {
newline();
if (! disablecomments)
- (void)fprintf(bitfile, "%%%%BeginFont: %s\n", rf->PSname);
+ fprintf(bitfile, "%%%%BeginFont: %s\n", rf->PSname);
#ifdef DOWNLOAD_USING_PDFTEX
if (!t1_subset_2(rf->Fontfile, grid, extraGlyphs))
#else
@@ -521,11 +521,11 @@ downpsfont(charusetype *p, charusetype *all)
fprintf(stderr, "\n");
prettycolumn = 0;
}
- (void)fprintf(stderr, "<%s>", realnameoffile);
+ fprintf(stderr, "<%s>", realnameoffile);
prettycolumn += strlen(realnameoffile) + 2;
}
if (! disablecomments)
- (void)fprintf(bitfile, "%%%%EndFont \n");
+ fprintf(bitfile, "%%%%EndFont \n");
}
}