Skip to content

Commit

Permalink
fix wrong netlist filename if invoking netlist from GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanSchippers committed Aug 28, 2023
1 parent 0805802 commit cd3f188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scheduler.c
Original file line number Diff line number Diff line change
Expand Up @@ -2317,7 +2317,7 @@ int xschem(ClientData clientdata, Tcl_Interp *interp, int argc, const char * arg
if(!strcmp(argv[2], "-messages")) {
messages = 1;
if(argc > 3) fname = argv[3];
} else {
} else if(strcmp(argv[2], "-erc")) {
fname = argv[2];
}
if(fname) {
Expand Down

0 comments on commit cd3f188

Please sign in to comment.