From 073083f3d968a9d5e5de22de938680af9b995f0c Mon Sep 17 00:00:00 2001 From: Cary R Date: Sun, 30 Oct 2011 23:18:37 -0700 Subject: [PATCH] Make some messages consistent in sys_icarus.c. 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 58e290dc6..d80a67074 100644 --- a/vpi/sys_icarus.c +++ b/vpi/sys_icarus.c @@ -45,7 +45,7 @@ static PLI_INT32 task_not_implemented_compiletf(ICARUS_VPI_CONST 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(ICARUS_VPI_CONST 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);