diff options
author | Tristan Gingold <tgingold@free.fr> | 2018-11-28 20:14:45 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2018-11-28 20:14:45 +0100 |
commit | 5a9ece8bf4f957e4afe7a9d410c85d26bcba14d0 (patch) | |
tree | 96ced95b1864b16e5d0e01d9b77c2a3b5ad88401 /src/vhdl/python/libghdl | |
parent | 255a9db44ab998435d968ef76705fe6558704894 (diff) | |
download | ghdl-5a9ece8bf4f957e4afe7a9d410c85d26bcba14d0.tar.gz ghdl-5a9ece8bf4f957e4afe7a9d410c85d26bcba14d0.tar.bz2 ghdl-5a9ece8bf4f957e4afe7a9d410c85d26bcba14d0.zip |
errorout: set length of location.
Diffstat (limited to 'src/vhdl/python/libghdl')
-rw-r--r-- | src/vhdl/python/libghdl/thin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vhdl/python/libghdl/thin.py b/src/vhdl/python/libghdl/thin.py index 5e6f87084..250fdda71 100644 --- a/src/vhdl/python/libghdl/thin.py +++ b/src/vhdl/python/libghdl/thin.py @@ -253,7 +253,8 @@ class Errorout: ("cont", c_int8), ("file", c_int32), ("line", c_int32), - ("offset", c_int32)] + ("offset", c_int32), + ("length", c_int32)] class Errorout_Memory: |