On Tue, 20 Mar 2012, Christos Zoulas wrote:
Modified Files: src/lib/libc/stdlib: jemalloc.c -static char *umax2s(uintmax_t x, char *s); +static char *umax2s(size_t x, char *s);
If you change the argument type, then please also change the function name. Right now, the name contains the string "umax" which imnplies that the function deals with uintmax_t upjects, but the function actually deals with size_t opjects.
--apb (Alan Barrett)