From 3d99bb13c47adc0c3ae9439764a16e838e1e97c2 Mon Sep 17 00:00:00 2001 From: Cary R Date: Sun, 30 Oct 2011 23:17:34 -0700 Subject: [PATCH] Make some messages consistent. This patch makes some of the VPI messages consistent with the rest. --- vpi/sys_icarus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vpi/sys_icarus.c b/vpi/sys_icarus.c index 0c851f64e..3941c5f79 100644 --- a/vpi/sys_icarus.c +++ b/vpi/sys_icarus.c @@ -45,7 +45,7 @@ static PLI_INT32 task_not_implemented_compiletf(PLI_BYTE8* name) { vpiHandle callh = vpi_handle(vpiSysTfCall, 0); - vpi_printf("%s:%d: SORRY: task %s() is not currently implemented.\n", + vpi_printf("SORRY: %s:%d: task %s() is not currently implemented.\n", vpi_get_str(vpiFile, callh), (int)vpi_get(vpiLineNo, callh), name); vpi_control(vpiFinish, 1); @@ -60,7 +60,7 @@ static PLI_INT32 missing_optional_compiletf(PLI_BYTE8* name) { vpiHandle callh = vpi_handle(vpiSysTfCall, 0); - vpi_printf("%s:%d: SORRY: %s() is not available in Icarus verilog.\n", + vpi_printf("SORRY: %s:%d: %s() is not available in Icarus verilog.\n", vpi_get_str(vpiFile, callh), (int)vpi_get(vpiLineNo, callh), name); vpi_control(vpiFinish, 1);