From d85683965de9a0668bcf7d26423cb85cb5de4ce1 Mon Sep 17 00:00:00 2001 From: Larry Doolittle Date: Fri, 4 Jan 2008 19:22:37 -0800 Subject: [PATCH] fix buggy SDF error message --- vpi/sys_sdf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpi/sys_sdf.c b/vpi/sys_sdf.c index 253a0cd44..f4d332ae4 100644 --- a/vpi/sys_sdf.c +++ b/vpi/sys_sdf.c @@ -239,7 +239,7 @@ static PLI_INT32 sys_sdf_annotate_compiletf(PLI_BYTE8*name) return 0; if (vpi_get(vpiType,scope) != vpiModule) { - vpi_printf("SDF ERROR: The second argument of %s", + vpi_printf("SDF ERROR: The second argument of %s" " must be a module instance.\n", name); vpi_control(vpiFinish, 1); }