Skip to content
Prev Previous commit
Next Next commit
fix empty check
  • Loading branch information
dschuff committed Apr 5, 2023
commit e536457819cc8e63bd8987f785e0bb792c8ecd68
2 changes: 1 addition & 1 deletion src/tools/wasm-metadce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ int main(int argc, const char* argv[]) {
});
options.parse(argc, argv);

if (!graphFile.empty()) {
if (graphFile.empty()) {
Fatal() << "no graph file provided.";
}

Expand Down