1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 10:20:45 +00:00

AK: Fix typo in warnln_if()

This commit is contained in:
Sam Atkins 2022-03-19 17:07:31 +00:00 committed by Brian Gianforcaro
parent 11ab8ee80a
commit dfc02f9761

View File

@ -578,7 +578,7 @@ inline void warnln() { outln(stderr); }
# define warnln_if(flag, fmt, ...) \
do { \
if constexpr (flag) \
outln(fmt, ##__VA_ARGS__); \
warnln(fmt, ##__VA_ARGS__); \
} while (0)
#endif