decomp: Avoid ' in error output (#421)

This commit is contained in:
Tyler Wilding
2021-05-06 18:47:32 -04:00
committed by GitHub
parent 21fefa0aaa
commit 233d887790
6 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -1024,6 +1024,6 @@ const DecompilerLabel& LinkedObjectFile::get_label_by_name(const std::string& na
return label;
}
}
throw std::runtime_error("Can't find label " + name);
throw std::runtime_error("Cannot find label " + name);
}
} // namespace decompiler