* dbg_mlc.c (GC_debug_realloc): Remove redundant GC_err_printf
invocation before abort; refine abort message.
* os_dep.c (GC_register_data_segments): Likewise.
# endif
default:
result = NULL; /* initialized to prevent warning. */
- GC_err_printf("GC_debug_realloc: encountered bad kind\n");
- ABORT_RET("Bad kind");
+ ABORT_RET("GC_debug_realloc: encountered bad kind");
}
if (result != NULL) {
struct o32_obj seg; /* Currrent segment */
int nsegs;
-
if (DosGetInfoBlocks(&ptib, &ppib) != NO_ERROR) {
ABORT("DosGetInfoBlocks failed");
}
module_handle = ppib -> pib_hmte;
if (DosQueryModuleName(module_handle, PBUFSIZ, path) != NO_ERROR) {
- GC_err_printf("DosQueryModuleName failed\n");
- ABORT("DosGetInfoBlocks failed");
+ ABORT("DosQueryModuleName failed");
}
myexefile = fopen(path, "rb");
if (myexefile == 0) {