sway

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

commit 97474f12e371c7b92c57f1f107897c29f0f704b2
parent f25588113435abdc3b6f9729897e92387f400340
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed,  5 Sep 2018 21:44:52 -0400

Merge pull request #2582 from ascent12/func

Remove __PRETTY_FUNCTION__
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);