From 6592ec357340f6bc23ade40bbd8cf74d42da7422 Mon Sep 17 00:00:00 2001 From: Robert Knutsson Date: Tue, 14 Oct 2025 23:55:59 +0200 Subject: [PATCH] FileDescriptor: add missing comma, which makes name correctly into a tuple Signed-off-by: Robert Knutsson Part-of: --- xcbgen/xtypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcbgen/xtypes.py b/xcbgen/xtypes.py index d073bf1..0b98734 100644 --- a/xcbgen/xtypes.py +++ b/xcbgen/xtypes.py @@ -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):