fix bug() args

This commit is contained in:
2024-02-07 19:29:49 +01:00
parent e907c81b8b
commit 8cb08dacb3

View File

@@ -41,7 +41,7 @@
#define warn(expr, format...) ({ \ #define warn(expr, format...) ({ \
int _ret = !!(expr); \ int _ret = !!(expr); \
if (unlikely(_ret)) \ if (unlikely(_ret)) \
vfprintf(stderr, format); \ vfprintf(stderr, ##format); \
unlikely(_ret); \ unlikely(_ret); \
}) })