mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +03:00
Fix variadic forwarding in sway_assert
_sway_assert is a variadic function which tries to delegate to another variadic function. This requires a vprintf-style variant of the delegate. https://stackoverflow.com/a/150616
This commit is contained in:
parent
4b3e533a59
commit
eb3b1ec5f1
2 changed files with 13 additions and 5 deletions
|
@ -28,6 +28,9 @@ void _sway_log(const char *filename, int line, log_importance_t verbosity, const
|
|||
#define sway_log(VERBOSITY, FMT, ...) \
|
||||
_sway_log(__FILE__, __LINE__, VERBOSITY, FMT, ##__VA_ARGS__)
|
||||
|
||||
#define sway_vlog(VERBOSITY, FMT, VA_ARGS) \
|
||||
_sway_vlog(__FILE__, __LINE__, VERBOSITY, FMT, VA_ARGS)
|
||||
|
||||
void error_handler(int sig);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue