code_blocks: Same error message in two places, make it clear which is triggering.

db4
Doug Coleman 2014-05-07 14:02:14 -07:00
parent e7f64b8c4d
commit 57611f78d3
1 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ cell factor_vm::compute_dlsym_address(array* parameters, cell index) {
return (cell)undefined_symbol; return (cell)undefined_symbol;
} }
default: default:
critical_error("Bad symbol specifier", symbol); critical_error("Bad symbol specifier in compute_dlsym_address", symbol);
return (cell)undefined_symbol; return (cell)undefined_symbol;
} }
} }
@ -224,7 +224,7 @@ cell factor_vm::compute_dlsym_toc_address(array* parameters, cell index) {
return (cell)undefined_toc; return (cell)undefined_toc;
} }
default: default:
critical_error("Bad symbol specifier", symbol); critical_error("Bad symbol specifier in compute_dlsym_toc_address", symbol);
return (cell)undefined_toc; return (cell)undefined_toc;
} }
} }