On Mon, Mar 19, 2018 at 5:19 PM, Junio C Hamano <gitster@xxxxxxxxx> wrote: > Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> writes: > >> +static inline int oe_fits_in_32bits(unsigned long limit) >> +{ >> + uint32_t truncated_limit = (uint32_t)limit; >> + >> + return limit == truncated_limit; >> +} > > I do not think it is worth a reroll (there only are a few > callsites), but the above has nothing to do with "oe" fitting > anything (it is about "limit"). Do you mind if I did this instead? > > static inline int fits_in_32bits(unsigned long size) > > ... or other suggestions, perhaps? > I just tried to not pollute the general namespace too much. That works for me too. -- Duy