t/ctl: Fix error message when toggling io fails

This commit is contained in:
Christoph Haag 2021-07-07 00:50:07 +02:00
parent e21f4a2458
commit 9ba24e3b15

View file

@ -130,7 +130,7 @@ toggle_io(struct ipc_connection *ipc_c, int client_id)
r = ipc_call_system_toggle_io_device(ipc_c, client_id);
if (r != XRT_SUCCESS) {
PE("Failed to set focused client to %d.\n", client_id);
PE("Failed to toggle io for client %d.\n", client_id);
return 1;
}