mirror of
https://gitlab.freedesktop.org/xorg/proto/xcbproto.git
synced 2025-12-20 04:40:09 +01:00
FileDescriptor: add missing comma, which makes name correctly into a tuple
Signed-off-by: Robert Knutsson <zybreak@gmail.com> Part-of: <https://gitlab.freedesktop.org/xorg/proto/xcbproto/-/merge_requests/62>
This commit is contained in:
parent
2810fd1d54
commit
6592ec3573
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ class FileDescriptor(SimpleType):
|
|||
Derived class which represents a file descriptor.
|
||||
'''
|
||||
def __init__(self):
|
||||
SimpleType.__init__(self, ('int'), 4, 'fd')
|
||||
SimpleType.__init__(self, ('int',), 4, 'fd')
|
||||
self.is_fd = True
|
||||
|
||||
def fixed_size(self):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue