aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/port/snprintf.c4
1 files 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