From 5ecb669a41e835ad6166aff3ccf86ff0f1a4f061 Mon Sep 17 00:00:00 2001 From: YRabbit Date: Tue, 19 Mar 2024 08:06:17 +1000 Subject: [PATCH] gowin: BUGFIX fix typo Signed-off-by: YRabbit --- himbaechel/uarch/gowin/gowin.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/himbaechel/uarch/gowin/gowin.cc b/himbaechel/uarch/gowin/gowin.cc index 1fc3e574..751f1865 100644 --- a/himbaechel/uarch/gowin/gowin.cc +++ b/himbaechel/uarch/gowin/gowin.cc @@ -114,7 +114,7 @@ void GowinImpl::init_database(Arch *arch) } else { bool GW2 = args.device.rfind("GW2A", 0) == 0; if (GW2) { - log_error("For the GW2A series you need to specify -vopt family=GW2A-18 or -vopt family=GW2A-18C\n"); + log_error("For the GW2A series you need to specify --vopt family=GW2A-18 or --vopt family=GW2A-18C\n"); } else { std::regex devicere = std::regex("GW1N([SZ]?)[A-Z]*-(LV|UV|UX)([0-9])(C?).*"); std::smatch match; @@ -123,7 +123,7 @@ void GowinImpl::init_database(Arch *arch) } family = stringf("GW1N%s-%s", match[1].str().c_str(), match[3].str().c_str()); if (family.rfind("GW1N-9", 0) == 0) { - log_error("For the GW1N-9 series you need to specify -vopt family=GW1N-9 or -vopt family=GW1N-9C\n"); + log_error("For the GW1N-9 series you need to specify --vopt family=GW1N-9 or --vopt family=GW1N-9C\n"); } } }