summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/XS-APItest/APItest.pm2
-rw-r--r--ext/XS-APItest/APItest.xs12
2 files changed, 7 insertions, 7 deletions
diff --git a/ext/XS-APItest/APItest.pm b/ext/XS-APItest/APItest.pm
index fb14f78dd5..5e8f716a94 100644
--- a/ext/XS-APItest/APItest.pm
+++ b/ext/XS-APItest/APItest.pm
@@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;
-our $VERSION = '1.30';
+our $VERSION = '1.31';
require XSLoader;
diff --git a/ext/XS-APItest/APItest.xs b/ext/XS-APItest/APItest.xs
index a7f1d5f011..4a0aac0c8a 100644
--- a/ext/XS-APItest/APItest.xs
+++ b/ext/XS-APItest/APItest.xs
@@ -7609,9 +7609,9 @@ test_siphash24()
if (hash32 != vectors_32[i]) {
failed++;
printf( "Error in 32 bit result on test vector of length %d for siphash24\n"
- " have: 0x%08x\n"
- " want: 0x%08x\n",
- i, hash32, vectors_32[i]);
+ " have: 0x%08" UVxf "\n"
+ " want: 0x%08" UVxf "\n",
+ i, (UV)hash32, (UV)vectors_32[i]);
}
}
RETVAL= failed;
@@ -7830,9 +7830,9 @@ test_siphash13()
if (hash32 != vectors_32[i]) {
failed++;
printf( "Error in 32 bit result on test vector of length %d for siphash13\n"
- " have: 0x%08x\n"
- " want: 0x%08x\n",
- i, hash32, vectors_32[i]);
+ " have: 0x%08" UVxf"\n"
+ " want: 0x%08" UVxf"\n",
+ i, (UV)hash32, (UV)vectors_32[i]);
}
}
RETVAL= failed;