aboutsummaryrefslogtreecommitdiffstats
path: root/include/log.h
diff options
context:
space:
mode:
authorLibravatar Scott Anderson <ascent12@hotmail.com>2018-09-06 13:31:57 +1200
committerLibravatar Scott Anderson <ascent12@hotmail.com>2018-09-06 13:31:57 +1200
commitbcde22312943a914255a0b8f7ecf00645a182471 (patch)
treed27b48ac1f7319ba8fce5979c49a48ee51550770 /include/log.h
parentMerge pull request #2579 from RyanDwyer/adjust-container-box (diff)
downloadsway-bcde22312943a914255a0b8f7ecf00645a182471.tar.gz
sway-bcde22312943a914255a0b8f7ecf00645a182471.tar.zst
sway-bcde22312943a914255a0b8f7ecf00645a182471.zip
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.h2
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);
15 15
16bool _sway_assert(bool condition, const char* format, ...) ATTRIB_PRINTF(2, 3); 16bool _sway_assert(bool condition, const char* format, ...) ATTRIB_PRINTF(2, 3);
17#define sway_assert(COND, FMT, ...) \ 17#define sway_assert(COND, FMT, ...) \
18 _sway_assert(COND, "[%s:%d] %s:" FMT, _wlr_strip_path(__FILE__), __LINE__, __PRETTY_FUNCTION__, ##__VA_ARGS__) 18 _sway_assert(COND, "[%s:%d] %s:" FMT, _wlr_strip_path(__FILE__), __LINE__, __func__, ##__VA_ARGS__)
19 19
20void error_handler(int sig); 20void error_handler(int sig);
21 21