diff options
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure index 4918f95736e..dac8e49084e 100755 --- a/configure +++ b/configure @@ -13201,7 +13201,8 @@ int main() */ bufz[0] = '\0'; /* in case snprintf fails to emit anything */ snprintf(bufz, sizeof(bufz), "%zu", ~((size_t) 0)); - snprintf(buf64, sizeof(buf64), UINT64_FORMAT, (PG_INT64_TYPE) ~((size_t) 0)); + snprintf(buf64, sizeof(buf64), "%" INT64_MODIFIER "u", + (unsigned PG_INT64_TYPE) ~((size_t) 0)); if (strcmp(bufz, buf64) != 0) return 1; return 0; |
