From 66d620674c3fbc0305e43a08cfd2abd990847c8c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 26 Apr 2000 10:43:25 -0300 Subject: IntPoint does not need L --- llimits.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llimits.h') diff --git a/llimits.h b/llimits.h index 06421ead..df5d6fff 100644 --- a/llimits.h +++ b/llimits.h @@ -1,5 +1,5 @@ /* -** $Id: llimits.h,v 1.4 2000/03/31 16:28:45 roberto Exp roberto $ +** $Id: llimits.h,v 1.5 2000/04/04 20:48:44 roberto Exp roberto $ ** Limits, basic types, and some other "instalation-dependent" definitions ** See Copyright Notice in lua.h */ @@ -29,7 +29,7 @@ typedef LUA_NUM_TYPE Number; ** conversion of pointer to int (for hashing only) ** (the shift removes bits that are usually 0 because of alignment) */ -#define IntPoint(L, p) (((unsigned long)(p)) >> 3) +#define IntPoint(p) (((unsigned long)(p)) >> 3) /* -- cgit v1.2.3-55-g6feb