mirror of
https://github.com/verilator/verilator.git
synced 2026-09-04 00:30:34 +02:00
Standardize some error messages.
This commit is contained in:
+1
-1
@@ -284,7 +284,7 @@ void V3Graph::dumpDotFile(const string& filename, bool colorAsSubgraph) const {
|
||||
// This generates a file used by graphviz, https://www.graphviz.org
|
||||
// "hardcoded" parameters:
|
||||
const std::unique_ptr<std::ofstream> logp{V3File::new_ofstream(filename)};
|
||||
if (logp->fail()) v3fatal("Can't write " << filename);
|
||||
if (logp->fail()) v3fatal("Can't write file: " << filename);
|
||||
|
||||
// Header
|
||||
*logp << "digraph v3graph {\n";
|
||||
|
||||
Reference in New Issue
Block a user