diff options
author | rws <empty> | 1993-02-05 17:03:43 +0000 |
---|---|---|
committer | rws <empty> | 1993-02-05 17:03:43 +0000 |
commit | bdc59b2f2e20ad111f156ca4d4fd7f2c04ca9c41 (patch) | |
tree | 157b0a396b9dea4cc3a81110a8daadc54a93a9fe /xc/lib/Xi | |
parent | 5f4bce1ecd879fa6b035e5443cf0fb04c4a6471d (diff) |
return NULL, not NoSuchExtension
Diffstat (limited to 'xc/lib/Xi')
-rw-r--r-- | xc/lib/Xi/XListDev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xc/lib/Xi/XListDev.c b/xc/lib/Xi/XListDev.c index 40555497a..ef68f9e0c 100644 --- a/xc/lib/Xi/XListDev.c +++ b/xc/lib/Xi/XListDev.c @@ -1,4 +1,4 @@ -/* $XConsortium: XListDev.c,v 1.17 91/07/23 12:28:18 rws Exp $ */ +/* $XConsortium: XListDev.c,v 1.18 92/11/14 12:55:20 rws Exp $ */ /************************************************************ Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, California, and the @@ -60,7 +60,7 @@ XDeviceInfo LockDisplay (dpy); if (CheckExtInit(dpy, XInput_Initial_Release) == -1) - return ((XDeviceInfo *) NoSuchExtension); + return ((XDeviceInfo *) NULL); GetReq(ListInputDevices,req); req->reqType = info->codes->major_opcode; |