From e86c9ec2b722c8b6aef6ea90ecddb57081a1c67f Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Sun, 30 Aug 2020 03:26:32 +0200 Subject: seatd: Remove unused device_closed msg body --- seatd/client.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'seatd/client.c') diff --git a/seatd/client.c b/seatd/client.c index 0991fbb..dcb9456 100644 --- a/seatd/client.c +++ b/seatd/client.c @@ -250,16 +250,12 @@ static int handle_close_device(struct client *client, int device_id) { goto fail; } - struct proto_server_device_closed msg = { - .device_id = device_id, - }; struct proto_header header = { .opcode = SERVER_DEVICE_CLOSED, - .size = sizeof msg, + .size = 0, }; - if (connection_put(&client->connection, &header, sizeof header) == -1 || - connection_put(&client->connection, &msg, sizeof msg)) { + if (connection_put(&client->connection, &header, sizeof header) == -1) { log_errorf("unable to write response: %s", strerror(errno)); return -1; } -- cgit v1.2.3