Package: vorbisgain / 0.37-2

0009-hardening.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Allow build with dh compat level 9 (debian build flags)
Forwarded: no
--- a/misc.c
+++ b/misc.c
@@ -56,7 +56,7 @@
     vfprintf(stderr, message, args);
     va_end(args);
 
-    fprintf(stderr, strerror(err_num));
+    fputs(strerror(err_num), stderr);
     fprintf(stderr, "\n");
 }