commit 9397091dab06a0f1c5fc7e963e724c17ab802460
parent 2b41d26b63fac8fd10b8c58e739addb7dfc98080
Author: Drew DeVault <sir@cmpwn.com>
Date: Wed, 2 Dec 2015 16:08:31 -0500
Merge pull request #293 from christophgysin/response
swaymsg: add newline after response
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/swaymsg/main.c b/swaymsg/main.c
@@ -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);