BUILD: flags: fix the fallback macros for missing stdio

The fallback macros for when stdio is not there didn't have the "..."
and were causing build issues on platforms with stricter dependencies
between includes.
This commit is contained in:
Willy Tarreau 2022-09-09 17:46:45 +02:00
parent 233c0a586d
commit 62bde43779
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@
#else /* EOF not defined => no stdio, do nothing */ #else /* EOF not defined => no stdio, do nothing */
#define __APPEND_FLAG(_buf, _len, _del, _flg, _val, _nam) do { } while (0) #define __APPEND_FLAG(_buf, _len, _del, _flg, _val, _nam, ...) do { } while (0)
#define __APPEND_ENUM(_buf, _len, _del, _flg, _msk, _val, _nam) do { } while (0) #define __APPEND_ENUM(_buf, _len, _del, _flg, _msk, _val, _nam, ...) do { } while (0)
#endif /* EOF */ #endif /* EOF */