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:
Robert Knutsson 2025-10-14 23:55:59 +02:00 committed by Marge Bot
parent 2810fd1d54
commit 6592ec3573

View file

@ -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):