aboutsummaryrefslogtreecommitdiff
path: root/common/util.c
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-01-05 22:32:51 +0100
committerFurkan Sahin <furkan-dev@proton.me>2018-01-05 22:32:51 +0100
commite7b9501520da4fa625b10758c40d712274b9f564 (patch)
tree3589175749c9a2ed746b0cc280ab3ccfb33125e9 /common/util.c
parentcdcfd5832a5a36a80616d0be543420b129844a91 (diff)
sway: change all sway_log to wlr_log
Diffstat (limited to 'common/util.c')
-rw-r--r--common/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/util.c b/common/util.c
index 83981160..fb7f9454 100644
--- a/common/util.c
+++ b/common/util.c
@@ -113,7 +113,7 @@ uint32_t parse_color(const char *color) {
int len = strlen(color);
if (len != 6 && len != 8) {
- sway_log(L_DEBUG, "Invalid color %s, defaulting to color 0xFFFFFFFF", color);
+ wlr_log(L_DEBUG, "Invalid color %s, defaulting to color 0xFFFFFFFF", color);
return 0xFFFFFFFF;
}
uint32_t res = (uint32_t)strtoul(color, NULL, 16);