commit: fef0bed45c212140f371e55839516458c7e2f5e0
parent 8c0525b56e6ad402eeff18af58eb1ce4d9e8be47
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sun, 14 Apr 2019 06:18:52 +0200
badwolf.c: Add newlines to WebViewCb_web_process_terminated
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/badwolf.c b/badwolf.c
@@ -95,15 +95,15 @@ WebViewCb_web_process_terminated(WebKitWebView *webView,
switch(reason)
{
case WEBKIT_WEB_PROCESS_CRASHED:
- g_fprintf(stderr, "the web process crashed.");
+ g_fprintf(stderr, "the web process crashed.\n");
webView_tab_label_change(browser, "Crashed");
break;
case WEBKIT_WEB_PROCESS_EXCEEDED_MEMORY_LIMIT:
- g_fprintf(stderr, "the web process exceeded the memory limit.");
+ g_fprintf(stderr, "the web process exceeded the memory limit.\n");
webView_tab_label_change(browser, "Out of Memory");
break;
default:
- g_fprintf(stderr, "the web process terminated for an unknown reason.");
+ g_fprintf(stderr, "the web process terminated for an unknown reason.\n");
webView_tab_label_change(browser, "Unknown Crash");
}