fix nasty macro bug

This commit is contained in:
anon 2025-01-23 23:19:31 +01:00
parent cfec745d8e
commit 47172248c7

View File

@ -14,7 +14,7 @@ extern void warning(const char * fmt, ...);
#define CHECK_OPEN(f, n, E) \
if (!f) { \
errorn(E_FILE_ACCESS, f); \
errorn(E_FILE_ACCESS, n); \
E; \
}