aboutsummaryrefslogtreecommitdiffstats
path: root/include/log.h
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-24 12:49:42 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-24 12:49:42 -0500
commit6becfc14310e1443fc058b57c3ff756f3cb06af3 (patch)
tree93bc00b44a48e43a1d2b3e7cc4c35ca0447a6ad4 /include/log.h
parentbasic layout command (diff)
downloadsway-6becfc14310e1443fc058b57c3ff756f3cb06af3.tar.gz
sway-6becfc14310e1443fc058b57c3ff756f3cb06af3.tar.zst
sway-6becfc14310e1443fc058b57c3ff756f3cb06af3.zip
update log.h for latest wlr
Diffstat (limited to 'include/log.h')
-rw-r--r--include/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/log.h b/include/log.h
index 350a59ef..a9748127 100644
--- a/include/log.h
+++ b/include/log.h
@@ -5,11 +5,11 @@
5 5
6void _sway_abort(const char *filename, ...) ATTRIB_PRINTF(1, 2); 6void _sway_abort(const char *filename, ...) ATTRIB_PRINTF(1, 2);
7#define sway_abort(FMT, ...) \ 7#define sway_abort(FMT, ...) \
8 _sway_abort("[%s:%d] " FMT, _strip_path(__FILE__), __LINE__, ##__VA_ARGS__) 8 _sway_abort("[%s:%d] " FMT, wlr_strip_path(__FILE__), __LINE__, ##__VA_ARGS__)
9 9
10bool _sway_assert(bool condition, const char* format, ...) ATTRIB_PRINTF(2, 3); 10bool _sway_assert(bool condition, const char* format, ...) ATTRIB_PRINTF(2, 3);
11#define sway_assert(COND, FMT, ...) \ 11#define sway_assert(COND, FMT, ...) \
12 _sway_assert(COND, "[%s:%d] %s:" FMT, _strip_path(__FILE__), __LINE__, __PRETTY_FUNCTION__, ##__VA_ARGS__) 12 _sway_assert(COND, "[%s:%d] %s:" FMT, wlr_strip_path(__FILE__), __LINE__, __PRETTY_FUNCTION__, ##__VA_ARGS__)
13 13
14void error_handler(int sig); 14void error_handler(int sig);
15 15