From 438fb016655ed0b8cb9a9870f876b1a2feeec3aa Mon Sep 17 00:00:00 2001 From: Dan Petrisko Date: Sun, 8 Nov 2020 18:55:33 -0800 Subject: [PATCH] Fix exited typo (#2634) --- src/Verilator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Verilator.cpp b/src/Verilator.cpp index 16fd4c94e..a676082b5 100644 --- a/src/Verilator.cpp +++ b/src/Verilator.cpp @@ -657,7 +657,7 @@ static void execBuildJob() { const string cmdStr = buildMakeCmd(v3Global.opt.prefix() + ".mk", ""); const int exit_code = V3Os::system(cmdStr); if (exit_code != 0) { - v3error(cmdStr << " exitted with " << exit_code << std::endl); + v3error(cmdStr << " exited with " << exit_code << std::endl); exit(exit_code); } } @@ -669,7 +669,7 @@ static void execHierVerilation() { const string cmdStr = buildMakeCmd(makefile, target); const int exit_code = V3Os::system(cmdStr); if (exit_code != 0) { - v3error(cmdStr << " exitted with " << exit_code << std::endl); + v3error(cmdStr << " exited with " << exit_code << std::endl); exit(exit_code); } }