diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-07-09 22:54:30 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-07-09 22:54:30 +0100 |
| commit | 293a3b0cea9da2281a0d6a34041c5dca181b7bba (patch) | |
| tree | 76624b3d4820551261e5c15f773c403c1a41264e /include | |
| parent | 852a55136e991eb35bf2736bdb8c3f8535d09c6d (diff) | |
Update for swaywm/wlroots#1126
Diffstat (limited to 'include')
| -rw-r--r-- | include/log.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/log.h b/include/log.h index a9748127..dd526143 100644 --- a/include/log.h +++ b/include/log.h @@ -3,13 +3,19 @@ #include <stdbool.h> #include <wlr/util/log.h> +#ifdef __GNUC__ +#define ATTRIB_PRINTF(start, end) __attribute__((format(printf, start, end))) +#else +#define ATTRIB_PRINTF(start, end) +#endif + void _sway_abort(const char *filename, ...) ATTRIB_PRINTF(1, 2); #define sway_abort(FMT, ...) \ - _sway_abort("[%s:%d] " FMT, wlr_strip_path(__FILE__), __LINE__, ##__VA_ARGS__) + _sway_abort("[%s:%d] " FMT, _wlr_strip_path(__FILE__), __LINE__, ##__VA_ARGS__) bool _sway_assert(bool condition, const char* format, ...) ATTRIB_PRINTF(2, 3); #define sway_assert(COND, FMT, ...) \ - _sway_assert(COND, "[%s:%d] %s:" FMT, wlr_strip_path(__FILE__), __LINE__, __PRETTY_FUNCTION__, ##__VA_ARGS__) + _sway_assert(COND, "[%s:%d] %s:" FMT, _wlr_strip_path(__FILE__), __LINE__, __PRETTY_FUNCTION__, ##__VA_ARGS__) void error_handler(int sig); |
