zfs boot subroutines: correctly specify type of an integer literal

Found by adding more warning flags to zfs boot blocks build.

Approved by:	re (kib)
MFC after:	1 week
This commit is contained in:
Andriy Gapon 2011-09-13 14:07:05 +00:00
parent 918314631b
commit c3e00850b4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=225531

View File

@ -328,7 +328,7 @@ typedef struct raidz_map {
(mask) = (x) & 0x8080808080808080ULL; \
(mask) = ((mask) << 1) - ((mask) >> 7); \
(x) = (((x) << 1) & 0xfefefefefefefefeULL) ^ \
((mask) & 0x1d1d1d1d1d1d1d1d); \
((mask) & 0x1d1d1d1d1d1d1d1dULL); \
}
#define VDEV_RAIDZ_64MUL_4(x, mask) \