Re: [PATCH 6/6] Correct fscanf formatting string for I64u values

2015-10-26 Thread Junio C Hamano
Thanks; will queue. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH 6/6] Correct fscanf formatting string for I64u values

2015-10-26 Thread Johannes Schindelin
From: Waldek Maleska This fix is probably purely cosmetic because PRIuMAX is likely identical to SCNuMAX. Nevertheless, when using a function of the scanf() family, the correct interpolation to use is the latter, not the former. Signed-off-by: Waldek Maleska