Hello, I compile with gcc491 -Wall -Wextra
vasnprintf.c: In function ‘vasnprintf’:vasnprintf.c:5107:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (count < maxlen ^count is int (signed) and maxlen is size_t (<=> unsigned) (lines 4935 and 4936).
I would appreciate if you fix the code, so that it compiles without warnings.
Greetings Dilyan