From 57611f78d3f4b722698aed0cf27ba7dd6f844533 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Wed, 7 May 2014 14:02:14 -0700 Subject: [PATCH] code_blocks: Same error message in two places, make it clear which is triggering. --- vm/code_blocks.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vm/code_blocks.cpp b/vm/code_blocks.cpp index e3117e3fb5..bb993f1ff4 100644 --- a/vm/code_blocks.cpp +++ b/vm/code_blocks.cpp @@ -186,7 +186,7 @@ cell factor_vm::compute_dlsym_address(array* parameters, cell index) { return (cell)undefined_symbol; } default: - critical_error("Bad symbol specifier", symbol); + critical_error("Bad symbol specifier in compute_dlsym_address", symbol); return (cell)undefined_symbol; } } @@ -224,7 +224,7 @@ cell factor_vm::compute_dlsym_toc_address(array* parameters, cell index) { return (cell)undefined_toc; } default: - critical_error("Bad symbol specifier", symbol); + critical_error("Bad symbol specifier in compute_dlsym_toc_address", symbol); return (cell)undefined_toc; } }