From d173652797cf0cf456ac2c38eca898159a7c19fc Mon Sep 17 00:00:00 2001
From: Andres Freund <andres@anarazel.de>
Date: Wed, 3 Oct 2018 13:28:14 -0700
Subject: [PATCH] Replace uint64 use introduced in 4868e446859 in light of
 595a0eab7f42.

Reported-By: Tom Lane
Discussion: https://postgr.es/m/527.1538598263@sss.pgh.pa.us
---
 src/port/snprintf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/port/snprintf.c b/src/port/snprintf.c
index 872d8001240..ef496fa4a43 100644
--- a/src/port/snprintf.c
+++ b/src/port/snprintf.c
@@ -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