Don't duplicate dbLoadRecords() error message

This commit is contained in:
Andrew Johnson
2025-10-08 16:10:00 -05:00
parent aba6309604
commit 9af7ff3b3f
2 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -805,7 +805,7 @@ int dbLoadRecords(const char* file, const char* subs)
if(dbLoadRecordsHook)
dbLoadRecordsHook(file, subs);
} else {
fprintf(stderr, ERL_ERROR " failed to load '%s'\n", file);
fprintf(stderr, ERL_ERROR ": Failed to load '%s'\n", file);
if(status==-2)
fprintf(stderr, " Records cannot be loaded after iocInit!\n");
}