talons

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

commit 7a36263d6ba50788c9ca47076f334a9101c50297
parent 9cd558c5357bc51acfaaa5e7227afc79c6e2bb8b
Author: Paul <paul@claws-mail.org>
Date:   Mon, 12 Oct 2015 19:25:20 +0100

fix a format warning, thanks to Daniel Jakots

Diffstat:
Msrc/common/utils.c | 2+-
Msrc/gtk/authors.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 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 @@ -170,8 +170,8 @@ static char *CONTRIBS_LIST[] = { "Yoichi Imai", "Mathias Intemann", "Ishihara", -"Daniel Jakots", "Jens Jahnke", +"Daniel Jakots", "Pascal Jermini", "KAJIWARA", "KUROSAWA",