From af5a54dea52b717245076ace3e3346a69339d893 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20B=C3=A9ron?= Date: Fri, 9 Dec 2005 11:22:21 +0100 Subject: [PATCH] sfnt2fnt: Don't print two newlines after error messages. --- tools/sfnt2fnt.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/sfnt2fnt.c b/tools/sfnt2fnt.c index 4d894e658b0..6b9f341dd95 100644 --- a/tools/sfnt2fnt.c +++ b/tools/sfnt2fnt.c @@ -73,7 +73,6 @@ static void error(const char *s, ...) va_start(ap, s); fprintf(stderr, "Error: "); vfprintf(stderr, s, ap); - fprintf(stderr, "\n"); va_end(ap); exit(1); }