Fix bug in fprintf

This commit is contained in:
Holger Vogt 2023-09-23 16:45:35 +02:00
parent b034332e84
commit f3eb46e76d
1 changed files with 1 additions and 1 deletions

View File

@ -1053,7 +1053,7 @@ static char *get_terminal_name(char* element, char *numberstr, NGHASHPTR instanc
char* instline = xcard->line;
char* inst = gettok(&instline);
fprintf(stderr, "Instance '%s' does not have an corresponding subcircuit '%s'!\n", inst, subcktname);
fprintf(stderr, " Is the model missing? .probe cannot determine subcircuit pin names.\n", inst);
fprintf(stderr, " Is the model missing? .probe cannot determine subcircuit pin names.\n");
tfree(subcktname);
tfree(inst);
return tprintf("n%s", numberstr);