Merge pull request #984 from yrabbit/assert

common: Correct a minor typo in the message
This commit is contained in:
myrtle 2022-05-10 13:17:22 +01:00 committed by GitHub
commit 41936fefac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,7 +68,7 @@ void CellInfo::connectPort(IdString port_name, NetInfo *net)
user.port = port_name; user.port = port_name;
port.user_idx = net->users.add(user); port.user_idx = net->users.add(user);
} else { } else {
NPNR_ASSERT_FALSE("invalid port type for connect_port"); NPNR_ASSERT_FALSE("invalid port type for connectPort");
} }
} }