talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit b453ee32deecd70d49eaeab17b707ec026a129f7
parent adf00727b0c28dc7b02bd36283b54cac6b2b555b
Author: Ricardo Mones <ricardo@mones.org>
Date:   Fri, 29 Jul 2016 20:21:05 +0200

Remove more line breaks from g_warning()

Diffstat:
Msrc/passwordstore.c | 2+-
Msrc/plugins/archive/libarchive_archive.c | 7+++----
2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/passwordstore.c b/src/passwordstore.c @@ -409,7 +409,7 @@ void passwd_store_read_config(void) PASSWORD_STORE_RC, NULL); if (!g_file_get_contents(rcpath, &contents, NULL, &error)) { - g_warning("couldn't read password store from file: %s\n", error->message); + g_warning("couldn't read password store from file: %s", error->message); g_error_free(error); g_free(rcpath); return; diff --git a/src/plugins/archive/libarchive_archive.c b/src/plugins/archive/libarchive_archive.c @@ -1,6 +1,6 @@ /* * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client - * Copyright (C) 1999-2008 Michael Rasmussen and the Claws Mail Team + * Copyright (C) 1999-2016 Michael Rasmussen and the Claws Mail Team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -14,7 +14,6 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. - * */ #ifdef HAVE_CONFIG_H @@ -199,7 +198,7 @@ gboolean before_date(time_t msg_mtime, const gchar* before) { debug_print("Cut-off date: %s\n", before); if ((date = iso2GDate(before)) == NULL) { - g_warning("Bad date format: %s\n", before); + g_warning("Bad date format: %s", before); return FALSE; } @@ -214,7 +213,7 @@ gboolean before_date(time_t msg_mtime, const gchar* before) { } if (! g_date_valid(file_t)) { - g_warning("Invalid msg date\n"); + g_warning("Invalid msg date"); return FALSE; }