Use MIN() instead of MAX() as the previous syntax was wrote in a weird and

confused way: "prec > 9 ? 9 : prec".

Submitted by:	pfg, ngie and luke <luke.tw@gmail.com>
MFC after:	2 weeks.
This commit is contained in:
Marcelo Araujo 2016-04-26 00:29:00 +00:00
parent b0ab3725db
commit 5d49c30c7b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298599

View File

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