From bcde22312943a914255a0b8f7ecf00645a182471 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Thu, 6 Sep 2018 13:31:57 +1200 Subject: Remove __PRETTY_FUNCTION__ This is a non-standard extension as well as completely useless in C. __func__ is the standard way of doing this. --- include/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/log.h') 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); -- cgit v1.2.3-54-g00ecf