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 /Xi | |
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 'Xi')
-rw-r--r-- | Xi/extinit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Xi/extinit.c b/Xi/extinit.c index cb1f3a435..d8714ba7c 100644 --- a/Xi/extinit.c +++ b/Xi/extinit.c @@ -352,7 +352,8 @@ Mask PropagateMask[MAX_DEVICES]; * */ -DevPrivateKey XIClientPrivateKey = &XIClientPrivateKey; +static int XIClientPrivateKeyIndex; +DevPrivateKey XIClientPrivateKey = &XIClientPrivateKeyIndex; static XExtensionVersion thisversion = { XI_Present, XI_2_Major, |