diff options
Diffstat (limited to 'pyGHDL/libghdl/_decorator.py')
| -rw-r--r-- | pyGHDL/libghdl/_decorator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/_decorator.py b/pyGHDL/libghdl/_decorator.py index 49694e8a3..b124461e5 100644 --- a/pyGHDL/libghdl/_decorator.py +++ b/pyGHDL/libghdl/_decorator.py @@ -99,7 +99,7 @@ def BindToLibGHDL(subprogramName): return c_bool elif typ is bytes: return c_char_p - elif typ in (c_char, c_char_p): + elif typ in (c_char, c_char_p, c_uint32): return typ elif isinstance(typ, TypeVar): # Humm, recurse ? |
