commit: 701faa9eba8ffc4e9ee9b924591575376e117169
parent: 7a7bcba953565ba17dcfd99b95d4fe66447663d0
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Wed, 23 Jan 2019 10:35:57 +0100
badwolf.c: Add missing newline on web-process-terminated callback
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/badwolf.c b/badwolf.c
@@ -43,7 +43,7 @@ static gboolean WebViewCb_web_process_terminated(WebKitWebView *webView,
str_reason = "the web process terminated for an unknown reason.";
}
- fprintf(stderr, "BadWolf [signal: web-process-terminated]: %s", str_reason);
+ fprintf(stderr, "BadWolf [signal: web-process-terminated]: %s\n", str_reason);
return FALSE;
}