mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-25 21:02:21 +00:00
Xi: rename ProcXISelectEvent to ProcXISelectEvents.
The request name has the plural, so let's do it here too. Purely cosmetic change. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
9563feeeb5
commit
77cc816da4
3 changed files with 7 additions and 7 deletions
|
|
@ -37,7 +37,7 @@
|
|||
#include "xiselectev.h"
|
||||
|
||||
int
|
||||
SProcXISelectEvent(ClientPtr client)
|
||||
SProcXISelectEvents(ClientPtr client)
|
||||
{
|
||||
char n;
|
||||
int i;
|
||||
|
|
@ -57,11 +57,11 @@ SProcXISelectEvent(ClientPtr client)
|
|||
evmask = (xXIEventMask*)(((char*)evmask) + evmask->mask_len * 4);
|
||||
}
|
||||
|
||||
return (ProcXISelectEvent(client));
|
||||
return (ProcXISelectEvents(client));
|
||||
}
|
||||
|
||||
int
|
||||
ProcXISelectEvent(ClientPtr client)
|
||||
ProcXISelectEvents(ClientPtr client)
|
||||
{
|
||||
int rc, num_masks, i;
|
||||
WindowPtr win;
|
||||
|
|
|
|||
Loading…
Reference in a new issue