1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-31 18:07:47 +00:00

Ports: Remove spaces in specifier in 2 printf calls in acpica-tools port

The specifiers are badly written and lead to a crash when using iASL.
This happens because our printf doesn't understand how to handle a space
between the percent symbol and the actual formatted type specifier after
it. To fix this, we just remove the spaces in a new patch file.
This commit is contained in:
Liav A 2022-05-27 22:09:11 +03:00 committed by Linus Groh
parent cf68e01970
commit 606cfc4d48
4 changed files with 40 additions and 2 deletions

View file

@ -8,3 +8,7 @@ Use static variable to prevent using a dangling pointer from a previous stack tr
## `0002-Disable-sprintf-debug-message-due-to-formatting-erro.patch`
Disable sprintf debug message with formatting issues.
## `0003-Fix-printf-bad-specifier-formatting.patch`
Fix sprintf specifier being written in a bad format leading to iASL to crash.