16 Oct
2023
16 Oct
'23
6:41 p.m.
Alex Henrie (@alexhenrie) commented about include/wine/debug.h:
if (!fourcc) return "''"; if (isprint( str[0] ) && isprint( str[1] ) && isprint( str[2] ) && isprint( str[3] )) - return wine_dbg_sprintf( "'%4s'", str ); + return wine_dbg_sprintf( "'%.4s'", str );
If all four characters are printable, how is %.4s different from %4s? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4106#note_48829