svg-flatten: Fix document scale with newer USVG

This commit is contained in:
jaseg 2025-01-22 15:25:05 +01:00
parent 05d4b0195f
commit 302d7d3db7
2 changed files with 6 additions and 1 deletions

View file

@ -94,6 +94,11 @@ int gerbolyze::run_cargo_command(const char *cmd_name, std::vector<std::string>
if (proc_rc) {
std::cerr << cmd_name << " returned an error code: " << proc_rc << std::endl;
std::cerr << "Command line:";
for (auto elem:cmdline) {
std::cerr << " " << elem;
}
std::cerr << std::endl;
return EXIT_FAILURE;
}