mirror of
https://github.com/swaywm/sway.git
synced 2025-01-23 17:26:41 +00:00
Merge pull request #293 from christophgysin/response
swaymsg: add newline after response
This commit is contained in:
commit
9397091dab
|
@ -111,7 +111,7 @@ int main(int argc, char **argv) {
|
||||||
uint32_t len = strlen(command);
|
uint32_t len = strlen(command);
|
||||||
char *resp = ipc_single_command(socketfd, type, command, &len);
|
char *resp = ipc_single_command(socketfd, type, command, &len);
|
||||||
if (!quiet) {
|
if (!quiet) {
|
||||||
printf("%s", resp);
|
printf("%s\n", resp);
|
||||||
}
|
}
|
||||||
close(socketfd);
|
close(socketfd);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue