Format string error in warn()
This commit is contained in:
parent
2ab60731dd
commit
993abb53dc
@ -170,7 +170,7 @@ aml_simulation_regload(const char *dumpfile)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((fp = fopen(dumpfile, "r")) == NULL) {
|
if ((fp = fopen(dumpfile, "r")) == NULL) {
|
||||||
warn(dumpfile);
|
warn("%s", dumpfile);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
while (fgets(buf, sizeof buf, fp) != NULL) {
|
while (fgets(buf, sizeof buf, fp) != NULL) {
|
||||||
@ -494,7 +494,7 @@ aml_simulation_regdump(const char *dumpfile)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((fp = fopen(dumpfile, "w")) == NULL) {
|
if ((fp = fopen(dumpfile, "w")) == NULL) {
|
||||||
warn(dumpfile);
|
warn("%s", dumpfile);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
while (!TAILQ_EMPTY(&RegionContentList)) {
|
while (!TAILQ_EMPTY(&RegionContentList)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user