mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-18 18:36:43 +00:00
Fixed gcc compiler warning
This commit is contained in:
parent
9b9c3327cc
commit
4d07f88258
1 changed files with 2 additions and 1 deletions
|
@ -145,7 +145,8 @@ struct Vhdl2verilogPass : public Pass {
|
||||||
}
|
}
|
||||||
|
|
||||||
log_header("Removing temp directory `%s':\n", tempdir_name);
|
log_header("Removing temp directory `%s':\n", tempdir_name);
|
||||||
system(stringf("rm -rf '%s'", tempdir_name).c_str());
|
if (system(stringf("rm -rf '%s'", tempdir_name).c_str()) != 0)
|
||||||
|
log_error("Execution of \"rm -rf '%s'\" failed!\n", tempdir_name);
|
||||||
|
|
||||||
log_pop();
|
log_pop();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue