Use intmax_t rather than long long

This commit is contained in:
bapt 2015-08-02 19:49:24 +00:00
parent e969e86e40
commit 9a7989cc8d

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: