1
0
Fork 0
mirror of https://git.suyu.dev/suyu/flatpak.git synced 2025-01-07 23:06:06 +00:00
yuzu-suyu-flatpak/shared-modules/vorbisgain/0009-hardening.patch

14 lines
307 B
Diff
Raw Normal View History

2024-03-07 23:28:57 +00:00
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");
}