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)
This commit is contained in:
cohrs
2003-08-04 20:44:56 +00:00
parent 5d55f632eb
commit a3d4ee545d

View File

@@ -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;