diff options
author | Tomas Carnecky <tom@dbservice.com> | 2008-08-28 18:05:40 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2008-08-28 18:05:40 -0400 |
commit | ebea78cdba0ff14a397239ee1936bd254c181e1b (patch) | |
tree | 3937720753cc112aaf9eb71ba0dcb39674362b98 /Xext/geext.c | |
parent | ec7907f8fa04dcff2649cc4846975844314f737e (diff) |
Prepare for array-index based devPrivates.
TODO: static indices can be made just an int; some indices
can be combined.
Diffstat (limited to 'Xext/geext.c')
-rw-r--r-- | Xext/geext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Xext/geext.c b/Xext/geext.c index 171fda160..8de4e7cb1 100644 --- a/Xext/geext.c +++ b/Xext/geext.c @@ -40,7 +40,8 @@ int GEEventBase; int GEErrorBase; -DevPrivateKey GEClientPrivateKey = &GEClientPrivateKey; +static int GEClientPrivateKeyIndex; +DevPrivateKey GEClientPrivateKey = &GEClientPrivateKeyIndex; int GEEventType; /* The opcode for all GenericEvents will have. */ int RT_GECLIENT = 0; |