diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-12-15 18:45:04 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-12-15 19:01:41 -0500 |
commit | d859f825d3612492678f5cd6cc6dc1f2647929e1 (patch) | |
tree | fa4dc296a5f1377867752d320ceef4e4b0178bbf | |
parent | 63d96c1bb45da39fa751fae654102e4dab36079a (diff) | |
download | sway-d859f825d3612492678f5cd6cc6dc1f2647929e1.tar.xz |
Fix build error
-rw-r--r-- | sway/ipc-server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c index f5be9e37..be6e411a 100644 --- a/sway/ipc-server.c +++ b/sway/ipc-server.c @@ -298,7 +298,7 @@ void ipc_get_pixels(wlc_handle output) { char *data = malloc(sizeof(response_header) + size->w * size->h * 4); if (!data) { sway_log(L_ERROR, "Unable to allocate pixels for get_pixels"); - ipc_client_disconnect(client); + ipc_client_disconnect(req->client); free(req); continue; } |