summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysif.c b/sysif.c
index 205fb310..8f3a1e62 100644
--- a/sysif.c
+++ b/sysif.c
@@ -1341,7 +1341,7 @@ off_t off_t_num(val num)
}
case BGNUM:
{
- const int odig = (sizeof (off_t) / sizeof (mp_digit));
+ mp_size odig = (sizeof (off_t) / sizeof (mp_digit));
int i;
off_t out;
mp_int *mpn = mp(num);