From 52b34e6d91f7d4f53d62f1af9b410e42c8d410c9 Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Wed, 1 Jan 2025 10:59:48 +0000 Subject: [PATCH] Fix typo in warning message (issue #1195) --- netlist.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlist.cc b/netlist.cc index 6a1a7b417..b9e3425b6 100644 --- a/netlist.cc +++ b/netlist.cc @@ -3075,7 +3075,7 @@ static void check_if_logic_l_value(const NetAssignBase *base, if ((sig->data_type() != IVL_VT_BOOL) && (sig->data_type() != IVL_VT_LOGIC)) { - cerr << base->get_fileline() << ": warning: Assinging to a " + cerr << base->get_fileline() << ": warning: Assigning to a " "non-integral variable ("<< sig->name() << ") cannot be synthesized " << get_process_type_as_string(pr_type) << endl;