Fix C warnings on 32-bit Darwin build
commitd5c75b18bbe0405e23da60c16f854d47cb13656c
authorDouglas Katzman <dougk@google.com>
Tue, 18 Apr 2017 23:14:45 +0000 (18 19:14 -0400)
committerDouglas Katzman <dougk@google.com>
Tue, 18 Apr 2017 23:26:18 +0000 (18 19:26 -0400)
treed0aaa27f8c5d463913cb9eba6992a8303adc443a
parent877b6d279c456fea4d82c04b848afcc5fe8b82ec
Fix C warnings on 32-bit Darwin build

We assumed that page_index_t can be formatted with %d, but it's
an intptr_t which might be a "long", and that doesn't match %d
even though it's the same number of bytes (4) as an int.
src/runtime/gc.h
src/runtime/gencgc.c