swaymsg: add newline after response

This commit is contained in:
Christoph Gysin 2015-12-02 22:40:50 +02:00
parent 7a1c8c2939
commit 88368362df
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ int main(int argc, char **argv) {
uint32_t len = strlen(command);
char *resp = ipc_single_command(socketfd, type, command, &len);
if (!quiet) {
printf("%s", resp);
printf("%s\n", resp);
}
close(socketfd);