From: Paul Date: Mon, 12 Oct 2015 18:25:20 +0000 (+0100) Subject: fix a format warning, thanks to Daniel Jakots X-Git-Tag: 3.13.1~101 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=7a36263d6ba50788c9ca47076f334a9101c50297;ds=sidebyside fix a format warning, thanks to Daniel Jakots --- diff --git a/src/common/utils.c b/src/common/utils.c index 2f3658865..b3038ee8d 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 d02f6dbf4..17cf1ea1c 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",