mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add explicit cast to fix mips and powerpc build after r299090
Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
c2ec037ff5
commit
b4f6936599
1 changed files with 1 additions and 1 deletions
|
|
@ -1026,7 +1026,7 @@ main(int argc, char **argv)
|
|||
printf("sizeof(struct unr) %zu\n", sizeof(struct unr));
|
||||
printf("sizeof(struct unrb) %zu\n", sizeof(struct unrb));
|
||||
printf("sizeof(struct unrhdr) %zu\n", sizeof(struct unrhdr));
|
||||
printf("NBITS %lu\n", NBITS);
|
||||
printf("NBITS %lu\n", (unsigned long)NBITS);
|
||||
x = 1;
|
||||
for (m = 0; m < count * reps; m++) {
|
||||
j = random();
|
||||
|
|
|
|||
Loading…
Reference in a new issue