commit b32b28769916d51b8314aca85d19bff8b971d8c9
parent ef5c197cfcc1e5e0dcd1048142d179e67f02f5cb
Author: Jonathan Boeing <jonathan@claws-mail.org>
Date: Thu, 9 Sep 2021 23:47:02 -0700
Minor cleanup
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/plugins/fancy/fancy_viewer.c b/src/plugins/fancy/fancy_viewer.c
@@ -130,7 +130,7 @@ static void fancy_apply_prefs(FancyViewer *viewer)
webkit_user_style_sheet_unref(style);
g_free(stylesheet);
} else {
- debug_print("Could not read style file: %s", viewer->override_stylesheet);
+ debug_print("Could not read style file: %s\n", viewer->override_stylesheet);
}
}
}
@@ -469,9 +469,9 @@ navigation_policy_cb (WebKitWebView *web_view,
webkit_policy_decision_ignore(policy_decision);
}
}
- return true;
+ return TRUE;
} else {
- return false;
+ return FALSE;
}
}