diff options
author | myrtle <gatecat@ds0.me> | 2022-05-10 13:17:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 13:17:22 +0100 |
commit | 41936fefac2b819ad77204f0ed64ba01e9138c2a (patch) | |
tree | 18380c6cdc7bc3225c4dac29c1daac8de933df5b | |
parent | 769a1f263a6514ee6ac215241e80c311cf81db4c (diff) | |
parent | 1aa693732c079eab2f3e49d734aef65d73bfe3d0 (diff) | |
download | nextpnr-41936fefac2b819ad77204f0ed64ba01e9138c2a.tar.gz nextpnr-41936fefac2b819ad77204f0ed64ba01e9138c2a.tar.bz2 nextpnr-41936fefac2b819ad77204f0ed64ba01e9138c2a.zip |
Merge pull request #984 from yrabbit/assert
common: Correct a minor typo in the message
-rw-r--r-- | common/kernel/nextpnr_types.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/kernel/nextpnr_types.cc b/common/kernel/nextpnr_types.cc index 57d816c0..82725d6f 100644 --- a/common/kernel/nextpnr_types.cc +++ b/common/kernel/nextpnr_types.cc @@ -68,7 +68,7 @@ void CellInfo::connectPort(IdString port_name, NetInfo *net) user.port = port_name; port.user_idx = net->users.add(user); } else { - NPNR_ASSERT_FALSE("invalid port type for connect_port"); + NPNR_ASSERT_FALSE("invalid port type for connectPort"); } } |