diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-09-07 07:46:19 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-09-07 18:20:05 +0200 |
commit | e751ea48729874dabea98d0a7fdfd8215a3b4005 (patch) | |
tree | 24f0353d5aa47f1c32de89d281048350ba6c545b /src | |
parent | 163b5a804be113543276199ee36c193d7df75c8c (diff) | |
download | ghdl-e751ea48729874dabea98d0a7fdfd8215a3b4005.tar.gz ghdl-e751ea48729874dabea98d0a7fdfd8215a3b4005.tar.bz2 ghdl-e751ea48729874dabea98d0a7fdfd8215a3b4005.zip |
vhdl-parse.adb: adjust error message. Fix #1485
Diffstat (limited to 'src')
-rw-r--r-- | src/vhdl/vhdl-parse.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-parse.adb b/src/vhdl/vhdl-parse.adb index 6a6f67024..9fac0b71f 100644 --- a/src/vhdl/vhdl-parse.adb +++ b/src/vhdl/vhdl-parse.adb @@ -1682,7 +1682,7 @@ package body Vhdl.Parse is end if; if Ctxt not in Parameter_Interface_List then Error_Msg_Parse - ("variable interface not allowed in generic or port clause"); + ("file interface not allowed in generic or port clause"); end if; Kind := Iir_Kind_Interface_File_Declaration; when Tok_Quantity => |