From a3d4ee545d79f27f7b8d7cc3af344407cebf64ac Mon Sep 17 00:00:00 2001 From: cohrs Date: Mon, 4 Aug 2003 20:44:56 +0000 Subject: [PATCH] int vs long the recent taking_off change lost the type "long" for taking_off, which is a problem on any platform where sizeof(long) != sizeof(int) --- src/do_wear.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/do_wear.c b/src/do_wear.c index b877ef0b3..e6e653b06 100644 --- a/src/do_wear.c +++ b/src/do_wear.c @@ -11,7 +11,7 @@ STATIC_DCL long takeoff_mask, taking_off; #else /* OVLB */ STATIC_OVL NEARDATA long takeoff_mask = 0L; -static NEARDATA taking_off = 0L; +static NEARDATA long taking_off = 0L; static NEARDATA int todelay; static boolean cancelled_don = FALSE; -- 2.40.0