mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-13 12:52:08 -08:00
cosmetic: change label name from ERR to ERROR
First netbsd patch is partly applied (we have dragonfly platform), but it drops solaris 10 support which we don't. Second is cosmetic and applied right now. Fixes #144. Signed-off-by: Daniel Kochmański <daniel@turtleware.eu>
This commit is contained in:
parent
143517a519
commit
1f567c8055
1 changed files with 3 additions and 3 deletions
|
|
@ -5367,7 +5367,7 @@ ecl_integer_to_off_t(cl_object offset)
|
|||
} else if (ECL_BIGNUMP(offset)) {
|
||||
if (sizeof(ECL_BIGNUM_LIMBS(offset)[0]) == sizeof(cl_index)) {
|
||||
if (ECL_BIGNUM_SIZE(offset) > 2) {
|
||||
goto ERR;
|
||||
goto ERROR;
|
||||
}
|
||||
if (ECL_BIGNUM_SIZE(offset) == 2) {
|
||||
output = ECL_BIGNUM_LIMBS(offset)[1];
|
||||
|
|
@ -5376,12 +5376,12 @@ ecl_integer_to_off_t(cl_object offset)
|
|||
output += ECL_BIGNUM_LIMBS(offset)[0];
|
||||
} else if (sizeof(ECL_BIGNUM_LIMBS(offset)[0]) >= sizeof(ecl_off_t)) {
|
||||
if (ECL_BIGNUM_SIZE(offset) > 1) {
|
||||
goto ERR;
|
||||
goto ERROR;
|
||||
}
|
||||
output = ECL_BIGNUM_LIMBS(offset)[0];
|
||||
}
|
||||
} else {
|
||||
ERR: FEerror("Not a valid file offset: ~S", 1, offset);
|
||||
ERROR: FEerror("Not a valid file offset: ~S", 1, offset);
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue