[SCM] jack-tools/master: Fix improper use of fprintf (Closes: #643413)

zmoelnig-guest at users.alioth.debian.org zmoelnig-guest at users.alioth.debian.org
Tue Oct 4 15:02:46 UTC 2011


The following commit has been merged in the master branch:
commit 77a30dd8a89179018a654020b4a82b6c6d1a5995
Author: IOhannes m zmölnig <zmoelnig at iem.at>
Date:   Tue Oct 4 16:41:53 2011 +0200

    Fix improper use of fprintf (Closes: #643413)

diff --git a/debian/patches/fix_ftbfs_with_printf.patch b/debian/patches/fix_ftbfs_with_printf.patch
new file mode 100644
index 0000000..1764ebb
--- /dev/null
+++ b/debian/patches/fix_ftbfs_with_printf.patch
@@ -0,0 +1,13 @@
+Description: fix FTBFS with printf where no format is specified 
+Author: IOhannes m zmölnig
+--- jack-tools.orig/jack.dl.c
++++ jack-tools/jack.dl.c
+@@ -17,7 +17,7 @@
+ 
+ void fail(char *s)
+ {
+-  fprintf(stderr, s);
++  fprintf(stderr, "%s", s);
+   exit(EXIT_FAILURE);
+ }
+ 
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..28c957a
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+fix_ftbfs_with_printf.patch

-- 
jack-tools packaging



More information about the pkg-multimedia-commits mailing list