[Commits] [SCM] claws branch, master, updated. 3.13.0-7-g7a36263

claws at claws-mail.org claws at claws-mail.org
Mon Oct 12 20:25:24 CEST 2015


The branch, master has been updated
       via  7a36263d6ba50788c9ca47076f334a9101c50297 (commit)
      from  9cd558c5357bc51acfaaa5e7227afc79c6e2bb8b (commit)

Summary of changes:
 src/common/utils.c |    2 +-
 src/gtk/authors.h  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


- Log -----------------------------------------------------------------
commit 7a36263d6ba50788c9ca47076f334a9101c50297
Author: Paul <paul at claws-mail.org>
Date:   Mon Oct 12 19:25:20 2015 +0100

    fix a format warning, thanks to Daniel Jakots

diff --git a/src/common/utils.c b/src/common/utils.c
index 2f36588..b3038ee 100644
--- a/src/common/utils.c
+++ b/src/common/utils.c
@@ -5107,7 +5107,7 @@ size_t fast_strftime(gchar *buf, gint buflen, const gchar *format, struct tm *lt
 				*curpos++ = '0'+(lt->tm_min % 10);
 				break;
 			case 's':
-				snprintf(subbuf, 64, "%ld", mktime(lt));
+				snprintf(subbuf, 64, "%lld", (long long)mktime(lt));
 				len = strlen(subbuf); CHECK_SIZE();
 				strncpy2(curpos, subbuf, buflen - total_done);
 				break;
diff --git a/src/gtk/authors.h b/src/gtk/authors.h
index d02f6db..17cf1ea 100644
--- a/src/gtk/authors.h
+++ b/src/gtk/authors.h
@@ -170,8 +170,8 @@ static char *CONTRIBS_LIST[] = {
 "Yoichi Imai",
 "Mathias Intemann",
 "Ishihara",
-"Daniel Jakots",
 "Jens Jahnke",
+"Daniel Jakots",
 "Pascal Jermini",
 "KAJIWARA",
 "KUROSAWA",

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list