Use macro MAX() from sys/param.h.

MFC after:	2 weeks.
This commit is contained in:
araujo 2016-04-22 03:43:06 +00:00
parent 244576d3c3
commit e15ebdf90e

View File

@ -1025,7 +1025,7 @@ format1(const struct stat *st,
*
* Nanoseconds: long.
*/
(void)snprintf(tmp, sizeof(tmp), "%dld", prec > 9 ? 9 : prec);
(void)snprintf(tmp, sizeof(tmp), "%dld", MAX(9, prec));
(void)strcat(lfmt, tmp);
/*