On 30/07/2024 05:39, Collin Funk wrote:
Here is a patch simplifying some printf invocations like:

     printf ("%s", intmaxtostr (value, buf));

to just use C99 conversion specifiers:

     printf ("%jd", value);

I've left ones that modify the return value (e.g. with quote) and ones
that use it for formatting like in 'ls'.

Nice cleanup.

Pushed.

thanks,
Pádraig

Reply via email to