Earlier quoted context omitted.
Some C programmers take the view that unsigneds have too many disadvantages: undefined behaviour for overflows, and weird type promotion rules. So, they try and avoid uints.
Umm, signed integers are UB on overflow; unsigned is always fine.
Anyway, in answer to the question, I would guess the reason was because of signed / unsigned type promotion.