diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-07-10 20:41:02 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-10 20:41:02 +1000 |
commit | 56ad148403d77a6defcbd6cd383dd5cde1a44954 (patch) | |
tree | 9dc36287be4bed02c4e98e600f26f48ceff5d8d6 /include/log.h | |
parent | 9dd54f934e73370b3438d48e062ec98a1db6b037 (diff) | |
parent | 5709c5d37577a9947bf31b249636c45f15b0258a (diff) |
Merge branch 'master' into fix-stacked-layout
Diffstat (limited to 'include/log.h')
-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); |