mirror of
https://gitlab.freedesktop.org/xorg/lib/libxcb.git
synced 2025-12-20 05:40:11 +01:00
c_client.py: _c_request_helper called with incorrect keyword argument
Signed-off-by: Robert Knutsson <zybreak@gmail.com>
This commit is contained in:
parent
e81b999a72
commit
34319d6ef2
1 changed files with 2 additions and 2 deletions
|
|
@ -3187,8 +3187,8 @@ def c_request(self, name):
|
|||
_c_request_helper(self, name, void=False, regular=True, aux=False, reply_fds=has_fds)
|
||||
_c_request_helper(self, name, void=False, regular=False, aux=False, reply_fds=has_fds)
|
||||
if self.c_need_aux:
|
||||
_c_request_helper(self, name, void=False, regular=True, aux=True, reply_fs=has_fds)
|
||||
_c_request_helper(self, name, void=False, regular=False, aux=True, reply_fs=has_fds)
|
||||
_c_request_helper(self, name, void=False, regular=True, aux=True, reply_fds=has_fds)
|
||||
_c_request_helper(self, name, void=False, regular=False, aux=True, reply_fds=has_fds)
|
||||
# Reply accessors
|
||||
_c_accessors(self.reply, name + ('reply',), name)
|
||||
_c_reply(self, name)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue