Fix build on i386 and arm.

Tested with:	make universe
Pointy hat to:	delphij
This commit is contained in:
Xin LI 2011-10-06 04:39:18 +00:00
parent e146993e33
commit 87ef283176
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226047

View File

@ -163,7 +163,7 @@ static int fastcmp(const fastmatch_t *fg, const void *data,
shift = bc; \
else \
{ \
ts = ((long)u - v < 0) ? 0 : (u - v); \
ts = (u >= v) ? (u - v) : 0; \
shift = MAX(ts, bc); \
shift = MAX(shift, gs); \
if (shift == gs) \