1
0
Fork 0
mirror of https://git.suyu.dev/suyu/flatpak.git synced 2025-01-06 14:26:07 +00:00
yuzu-suyu-flatpak/shared-modules/vorbisgain/0009-hardening.patch
2024-03-07 20:28:57 -03:00

13 lines
307 B
Diff

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");
}