object format (typos).
svn path=/trunk/yasm/; revision=785
/* If not already specified, default to null as the debug format. */
if (!cur_dbgfmt)
- cur_dbgfmt = load_objfmt("null");
+ cur_dbgfmt = load_dbgfmt("null");
else {
int matched_dbgfmt = 0;
/* Check to see if the requested debug format is in the allowed list
}
}
- if (!cur_objfmt) {
- ErrorNow(_("Could not load default object format"));
+ if (!cur_dbgfmt) {
+ ErrorNow(_("Could not load default debug format"));
return EXIT_FAILURE;
}
/* If not already specified, default to null as the debug format. */
if (!cur_dbgfmt)
- cur_dbgfmt = load_objfmt("null");
+ cur_dbgfmt = load_dbgfmt("null");
else {
int matched_dbgfmt = 0;
/* Check to see if the requested debug format is in the allowed list
}
}
- if (!cur_objfmt) {
- ErrorNow(_("Could not load default object format"));
+ if (!cur_dbgfmt) {
+ ErrorNow(_("Could not load default debug format"));
return EXIT_FAILURE;
}