aboutsummaryrefslogtreecommitdiffstats
path: root/generic/main.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2020-05-14 22:10:06 +0100
committerGitHub <noreply@github.com>2020-05-14 22:10:06 +0100
commit0fb7746c2050602c1e25ec6cbbdbd8c88c3f1c70 (patch)
tree3317811cbdec09c6d99d94d6d0f1dd9fadf52392 /generic/main.cc
parentf8cf206826db50225dff2ff92049018ca2ca553a (diff)
parent08f68518f2f795b42fa82bd8c68bb6b3db46ebc7 (diff)
downloadnextpnr-0fb7746c2050602c1e25ec6cbbdbd8c88c3f1c70.tar.gz
nextpnr-0fb7746c2050602c1e25ec6cbbdbd8c88c3f1c70.tar.bz2
nextpnr-0fb7746c2050602c1e25ec6cbbdbd8c88c3f1c70.zip
Merge pull request #442 from nategraff-sifive/fix-unsupported-spelling
Fix spelling of 'unsupported'
Diffstat (limited to 'generic/main.cc')
-rw-r--r--generic/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/main.cc b/generic/main.cc
index bb780996..784178c6 100644
--- a/generic/main.cc
+++ b/generic/main.cc
@@ -58,7 +58,7 @@ std::unique_ptr<Context> GenericCommandHandler::createContext(std::unordered_map
if (values.find("arch.name") != values.end()) {
std::string arch_name = values["arch.name"].as_string();
if (arch_name != "generic")
- log_error("Unsuported architecture '%s'.\n", arch_name.c_str());
+ log_error("Unsupported architecture '%s'.\n", arch_name.c_str());
}
auto ctx = std::unique_ptr<Context>(new Context(chipArgs));
if (vm.count("no-iobs"))