aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-02-23 09:54:49 +0100
committerGitHub <noreply@github.com>2018-02-23 09:54:49 +0100
commitbd9583a7e8108ab4fd31fc5ab6f7c1552258fa6e (patch)
treee4c88ad6280997d893f0e4aaa98b48fb3bcf3678 /util
parent1c1b5b1b17519e945097e9ca9a8f7b5a1669a4fe (diff)
parent6ba1128a72c3779affd82719a19be643a33490a0 (diff)
Merge pull request #652 from agx/symbols-file
Add symbols file
Diffstat (limited to 'util')
-rw-r--r--util/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/log.c b/util/log.c
index 327402e6..2adcae2d 100644
--- a/util/log.c
+++ b/util/log.c
@@ -73,7 +73,7 @@ void _wlr_log(log_importance_t verbosity, const char *fmt, ...) {
// e.g. '/src/build/wlroots/backend/wayland/backend.c' and
// '../backend/wayland/backend.c' will both be stripped to
// 'backend/wayland/backend.c'
-const char *_strip_path(const char *filepath) {
+const char *wlr_strip_path(const char *filepath) {
static int srclen = sizeof(WLR_SRC_DIR);
if (strstr(filepath, WLR_SRC_DIR) == filepath) {
filepath += srclen;