summaryrefslogtreecommitdiff
path: root/audio/wavegain/files/patch-misc.c
blob: c71a357f24db9ce7f7338263df7a0b199f9cd316 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
--- misc.c.orig	2006-06-04 21:47:38 UTC
+++ misc.c
@@ -39,8 +39,7 @@ void file_error(const char* message, ...)
 	vfprintf(stderr, message, args);
 	va_end(args);
 
-	fprintf(stderr, strerror(err_num));
-	fprintf(stderr, "\n");
+	fprintf(stderr, "%s\n", strerror(err_num));
 }