Francois Gouget : fnt2bdf: Remove spaces before '\n's.

Alexandre Julliard julliard at winehq.org
Mon Mar 9 09:40:30 CDT 2009


Module: wine
Branch: master
Commit: 6724655a57e7e9dd962f7524e945852074b4e8cb
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6724655a57e7e9dd962f7524e945852074b4e8cb

Author: Francois Gouget <fgouget at free.fr>
Date:   Sun Mar  8 23:51:25 2009 +0100

fnt2bdf: Remove spaces before '\n's.

---

 tools/fnt2bdf.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/fnt2bdf.c b/tools/fnt2bdf.c
index e6a53fa..277764b 100644
--- a/tools/fnt2bdf.c
+++ b/tools/fnt2bdf.c
@@ -226,13 +226,13 @@ static int dump_bdf( fnt_fontS* cpe_font_struct, unsigned char* file_buffer)
 
 	l_span = (int) (cpe_font_struct->dfCharTable[ic].charWidth-1)/8;
 
-	fprintf(fp, "STARTCHAR %d  \n", ic);
+	fprintf(fp, "STARTCHAR %d\n", ic);
 	fprintf(fp, "ENCODING %d\n",   l_fchar);
-	fprintf(fp, "SWIDTH    %d    %d \n",
+	fprintf(fp, "SWIDTH    %d    %d\n",
 		cpe_font_struct->dfCharTable[ic].charWidth*1000,
 		0);
 
-	fprintf(fp, "DWIDTH    %d    %d \n",
+	fprintf(fp, "DWIDTH    %d    %d\n",
 		cpe_font_struct->dfCharTable[ic].charWidth, 0);
 
 	fprintf(fp, "BBX  %d  %d  %d   %d\n",




More information about the wine-cvs mailing list