Use MIN macro from sys/param.h.

MFC after:	2 weeks.
This commit is contained in:
Marcelo Araujo 2016-05-02 01:45:52 +00:00
parent a1b422f4d6
commit eff97b5e63
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298910

View file

@ -182,7 +182,7 @@ cmdscanner(void)
if ((bp = el_gets(el, &num)) == NULL || num == 0)
quit(0, NULL);
len = (num > MAX_CMDLINE - 1) ? MAX_CMDLINE - 1 : num;
len = MIN(MAX_CMDLINE - 1, num);
memcpy(cmdline, bp, len);
cmdline[len] = 0;
history(hist, &he, H_ENTER, bp);