diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-07-10 18:56:45 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-07-10 18:56:45 +0200 |
commit | 24f55f065dd3eff8ace07a9932308f024f09bc3f (patch) | |
tree | 7c9b2f4c7fc00cfc5251988328bb45d357dc178f | |
parent | 85e64d3b4cc5383e3a4b98f7107ff346d534340f (diff) | |
download | ghdl-24f55f065dd3eff8ace07a9932308f024f09bc3f.tar.gz ghdl-24f55f065dd3eff8ace07a9932308f024f09bc3f.tar.bz2 ghdl-24f55f065dd3eff8ace07a9932308f024f09bc3f.zip |
vhdl: improve an error message.
-rw-r--r-- | src/vhdl/vhdl-sem_assocs.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-sem_assocs.adb b/src/vhdl/vhdl-sem_assocs.adb index 09ed67a85..230c8065a 100644 --- a/src/vhdl/vhdl-sem_assocs.adb +++ b/src/vhdl/vhdl-sem_assocs.adb @@ -2350,7 +2350,7 @@ package body Vhdl.Sem_Assocs is then if Finish then Error_Msg_Sem - (+Assoc, "%n is not an interface name", +Inter); + (+Formal, "%n is not an interface name", +Inter); end if; Match := Not_Compatible; exit; |