Use intmax_t rather than long long

This commit is contained in:
Baptiste Daroussin 2015-08-02 19:49:24 +00:00
parent 9e24273cca
commit 5cc12db1c7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=286211

View File

@ -493,11 +493,11 @@ write_userconfig(struct userconf *cnf, const char *file)
quote = 0;
break;
case _UC_EXPIRE:
sbuf_printf(buf, "%lld", (long long)cnf->expire_days);
sbuf_printf(buf, "%jd", (intmax_t)cnf->expire_days);
quote = 0;
break;
case _UC_PASSWORD:
sbuf_printf(buf, "%lld", (long long)cnf->password_days);
sbuf_printf(buf, "%jd", (intmax_t)cnf->password_days);
quote = 0;
break;
case _UC_NONE: