summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorTAKAI Kousuke <62541129+t-a-k@users.noreply.github.com>2022-07-16 09:35:55 +0900
committerℕicolas ℝ <nicolas@atoomic.org>2022-07-20 14:55:35 -0600
commitfc3ce1a8e466bab895f3b03009890b56e655d90d (patch)
tree9d4a91b193e6dca3cc3d579887a67627d695d73a /Configure
parent47265a9e5092449bc4e578c1beada223207d1395 (diff)
downloadperl-fc3ce1a8e466bab895f3b03009890b56e655d90d.tar.gz
Configure: Fix typos for C99 macro name PRIX64
There are no macros named PRIXU64. This line seems to date back to commit 6b356c8efb963846940ef92952cf77e5b86bd65e which renamed shell variable names to work well with case-insensitive systems, but could have overdone a bit.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 723ed94676..ab468d566b 100755
--- a/Configure
+++ b/Configure
@@ -21632,7 +21632,7 @@ EOCP
case "$yyy" in
12345678901)
sPRId64=PRId64; sPRIi64=PRIi64; sPRIu64=PRIu64;
- sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIXU64;
+ sPRIo64=PRIo64; sPRIx64=PRIx64; sPRIXU64=PRIX64;
echo "We will use the C9X style."
;;
esac