update error message to distinguish conditions

This commit is contained in:
Brett Jia 2025-03-12 20:19:29 -04:00
parent 2e4341fad9
commit 5b61e3d3fb

View file

@ -1926,7 +1926,8 @@ int main(int argc, char *argv[]) {
if (loaders.p[i].kernel != NULL &&
loaders.p[j].kernel != NULL &&
strcmp(loaders.p[i].kernel, loaders.p[j].kernel) == 0) {
Die(prog, "multiple ape loaders specified for the same platform");
Die(prog, "multiple ape loaders specified for the same platform "
"with matching kernels");
}
}
}