$NetBSD$

--- src/c/file.d.orig	2011-01-16 22:39:56.000000000 +0100
+++ src/c/file.d	2011-04-10 21:23:34.034015233 +0200
@@ -4828,7 +4828,7 @@ ecl_integer_to_off_t(cl_object offset)
 	} else if (ECL_BIGNUMP(offset)) {
 		if (sizeof(offset->big.big_limbs[0]) == sizeof(cl_index)) {
 			if (offset->big.big_size > 2) {
-				goto ERR;
+				goto ERROR;
 			}
 			if (offset->big.big_size == 2) {
 			    output = offset->big.big_limbs[1];
@@ -4837,12 +4837,12 @@ ecl_integer_to_off_t(cl_object offset)
 			output += offset->big.big_limbs[0];
 		} else if (sizeof(offset->big.big_limbs[0]) >= sizeof(ecl_off_t)) {
 			if (offset->big.big_size > 1) {
-				goto ERR;
+				goto ERROR;
 			}
 			output = offset->big.big_limbs[0];
 		}
 	} else {
-	ERR:	FEerror("Not a valid file offset: ~S", 1, offset);
+	ERROR:	FEerror("Not a valid file offset: ~S", 1, offset);
 	}
 	return output;
 }
