diff options
Diffstat (limited to 'gs/psi/zstack.c')
-rw-r--r-- | gs/psi/zstack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gs/psi/zstack.c b/gs/psi/zstack.c index 84ec98ac4..21703f9b7 100644 --- a/gs/psi/zstack.c +++ b/gs/psi/zstack.c @@ -112,7 +112,7 @@ zroll(i_ctx_t *i_ctx_p) check_type(*op1, t_integer); check_type(*op, t_integer); - if ((ulong) op1->value.intval > (ulong)(op1 - osbot)) { + if ((uint) op1->value.intval > (uint)(op1 - osbot)) { /* * The data might span multiple stack blocks. * There are efficient ways to handle this situation, |