aboutsummaryrefslogtreecommitdiffstats
path: root/common/ipc-client.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-01-06 09:31:34 -0500
committerLibravatar GitHub <noreply@github.com>2018-01-06 09:31:34 -0500
commit5a23959242419169fa4af032d85ee3f65e7041e4 (patch)
tree79386d3d2aa90718f8c071a3337c695cb8a71f78 /common/ipc-client.c
parentMerge pull request #1554 from martinetd/cmd_set (diff)
parentcommon/log: finish removing most log functions (diff)
downloadsway-5a23959242419169fa4af032d85ee3f65e7041e4.tar.gz
sway-5a23959242419169fa4af032d85ee3f65e7041e4.tar.zst
sway-5a23959242419169fa4af032d85ee3f65e7041e4.zip
Merge pull request #1556 from martinetd/cleanup_logging
Cleanup logging
Diffstat (limited to 'common/ipc-client.c')
-rw-r--r--common/ipc-client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/ipc-client.c b/common/ipc-client.c
index 1ab6627b..582c5e86 100644
--- a/common/ipc-client.c
+++ b/common/ipc-client.c
@@ -79,7 +79,7 @@ struct ipc_response *ipc_recv_response(int socketfd) {
79error_2: 79error_2:
80 free(response); 80 free(response);
81error_1: 81error_1:
82 sway_log(L_ERROR, "Unable to allocate memory for IPC response"); 82 wlr_log(L_ERROR, "Unable to allocate memory for IPC response");
83 return NULL; 83 return NULL;
84} 84}
85 85