summaryrefslogtreecommitdiff
path: root/multimedia/xine-ui/patches/patch-aq
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/xine-ui/patches/patch-aq')
-rw-r--r--multimedia/xine-ui/patches/patch-aq31
1 files changed, 31 insertions, 0 deletions
diff --git a/multimedia/xine-ui/patches/patch-aq b/multimedia/xine-ui/patches/patch-aq
new file mode 100644
index 00000000000..cef7392908c
--- /dev/null
+++ b/multimedia/xine-ui/patches/patch-aq
@@ -0,0 +1,31 @@
+$NetBSD: patch-aq,v 1.1.2.2 2006/04/26 14:58:40 salo Exp $
+
+--- src/xitk/main.c.orig 2004-07-02 23:41:03.000000000 +0200
++++ src/xitk/main.c
+@@ -451,7 +451,7 @@ static void print_formatted(char *title,
+ int len;
+ char *blanks = " ";
+
+- printf(title);
++ printf("%s", title);
+
+ sprintf(buffer, "%s", blanks);
+ plugin = *plugins++;
+@@ -464,7 +464,7 @@ static void print_formatted(char *title,
+ sprintf(buffer, "%s%s%s", buffer, (strlen(buffer) == strlen(blanks)) ? "" : ", ", plugin);
+ }
+ else {
+- printf(buffer);
++ printf("%s", buffer);
+ printf(",\n");
+ snprintf(buffer, sizeof(buffer), "%s%s", blanks, plugin);
+ }
+@@ -473,7 +473,7 @@ static void print_formatted(char *title,
+ }
+
+ if(strlen(buffer))
+- printf(buffer);
++ printf("%s", buffer);
+
+ printf(".\n\n");
+ }