From 08f68518f2f795b42fa82bd8c68bb6b3db46ebc7 Mon Sep 17 00:00:00 2001 From: Nathaniel Graff Date: Wed, 13 May 2020 20:00:09 -0700 Subject: Fix spelling of 'unsupported' Signed-off-by: Nathaniel Graff --- ecp5/main.cc | 10 +++++----- generic/main.cc | 2 +- ice40/main.cc | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ecp5/main.cc b/ecp5/main.cc index a24011db..f1cb9760 100644 --- a/ecp5/main.cc +++ b/ecp5/main.cc @@ -174,12 +174,12 @@ std::unique_ptr ECP5CommandHandler::createContext(std::unordered_map ECP5CommandHandler::createContext(std::unordered_map ECP5CommandHandler::createContext(std::unordered_map 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(new Context(chipArgs)); if (vm.count("no-iobs")) diff --git a/ice40/main.cc b/ice40/main.cc index 3b512a5a..07c91399 100644 --- a/ice40/main.cc +++ b/ice40/main.cc @@ -163,12 +163,12 @@ std::unique_ptr Ice40CommandHandler::createContext(std::unordered_map Ice40CommandHandler::createContext(std::unordered_map