sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit bcde22312943a914255a0b8f7ecf00645a182471
parent f25588113435abdc3b6f9729897e92387f400340
Author: Scott Anderson <ascent12@hotmail.com>
Date:   Thu,  6 Sep 2018 13:31:57 +1200

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:
Minclude/log.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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);