diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-09-06 13:31:57 +1200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-09-06 13:31:57 +1200 |
| commit | 26e1c176fed92f3565dfea74f0748f234e4e6a97 (patch) | |
| tree | d27b48ac1f7319ba8fce5979c49a48ee51550770 /include/log.h | |
| parent | 27e5a4ba64a2e842824937386e2f90908c761214 (diff) | |
Remove __PRETTY_FUNCTION__
This is a non-standard extension as well as completely useless in C.
__func__ is the standard way of doing this.
Diffstat (limited to 'include/log.h')
| -rw-r--r-- | include/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/log.h b/include/log.h index dd526143..6fb2f277 100644 --- a/include/log.h +++ b/include/log.h @@ -15,7 +15,7 @@ void _sway_abort(const char *filename, ...) ATTRIB_PRINTF(1, 2); 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__, __func__, ##__VA_ARGS__) void error_handler(int sig); |
