Commit d1736527 authored by Andres Freund's avatar Andres Freund

Replace uint64 use introduced in 4868e446 in light of 595a0eab.

Reported-By: Tom Lane
Discussion: https://postgr.es/m/527.1538598263@sss.pgh.pa.us
parent 4868e446
......@@ -1046,9 +1046,9 @@ fmtint(long long value, char type, int forcesign, int leftjust,
/* Handle +/- */
if (dosign && adjust_sign((value < 0), forcesign, &signvalue))
uvalue = -(uint64) value;
uvalue = -(unsigned long long) value;
else
uvalue = (uint64) value;
uvalue = (unsigned long long) value;
/*
* SUS: the result of converting 0 with an explicit precision of 0 is no
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment