summaryrefslogtreecommitdiff
path: root/audio/mpg321/patches/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'audio/mpg321/patches/patch-aa')
-rw-r--r--audio/mpg321/patches/patch-aa22
1 files changed, 22 insertions, 0 deletions
diff --git a/audio/mpg321/patches/patch-aa b/audio/mpg321/patches/patch-aa
new file mode 100644
index 00000000000..448df21b471
--- /dev/null
+++ b/audio/mpg321/patches/patch-aa
@@ -0,0 +1,22 @@
+$NetBSD: patch-aa,v 1.1 2004/01/07 16:54:12 tron Exp $
+
+--- mpg321.c.orig Sun Mar 24 06:49:20 2002
++++ mpg321.c Wed Jan 7 17:47:33 2004
+@@ -188,7 +188,7 @@
+
+ else
+ {
+- printf(names[i]);
++ printf("%s", names[i]);
+ free(names[i]);
+ }
+ }
+@@ -203,7 +203,7 @@
+ if (!names[i]) {
+ fprintf (stderr, emptystring);
+ } else {
+- fprintf (stderr, names[i]);
++ fprintf (stderr, "%s", names[i]);
+ free (names[i]);
+ }
+ if (i%2) fprintf (stderr, "\n");