aboutsummaryrefslogtreecommitdiffstats
path: root/rpa.c
diff options
context:
space:
mode:
Diffstat (limited to 'rpa.c')
-rw-r--r--rpa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpa.c b/rpa.c
index 433c12e6..7f4c0658 100644
--- a/rpa.c
+++ b/rpa.c
@@ -527,7 +527,7 @@ static int DecBase64(char *bufp)
else if ( ch=='+' ) newx = 62;
else if ( ch=='/' ) newx = 63;
else {
- report(stderr, GT_("dec64 error at char %d: %x\n"), inp - bufp, ch);
+ report(stderr, GT_("dec64 error at char %d: %x\n"), (int)(inp - bufp), ch);
return(0);
}
part=((part & 0x3F)*64) + newx;