From fac4d11b8c7beb6a711a83ba002682bab0168816 Mon Sep 17 00:00:00 2001 From: Peter TB Brett Date: Mon, 9 Jan 2012 21:05:55 +0000 Subject: [PATCH] gnetlist: Output refdes when g_get_nets() fails. Affects-bug: lp-912976 --- gnetlist/src/g_netlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnetlist/src/g_netlist.c b/gnetlist/src/g_netlist.c index 6e8d0fe5e..f297f6fe8 100644 --- a/gnetlist/src/g_netlist.c +++ b/gnetlist/src/g_netlist.c @@ -405,8 +405,8 @@ SCM g_get_nets(SCM scm_uref, SCM scm_pin) } else { outerlist = scm_cons (scm_from_utf8_string ("ERROR_INVALID_PIN"), outerlist); - fprintf(stderr, "Invalid wanted_pin passed to get-nets [%s]\n", - wanted_pin); + fprintf(stderr, "Invalid refdes ('%s') and pin ('%s') passed to get-nets\n", + wanted_uref, wanted_pin); } scm_dynwind_end (); -- 2.11.4.GIT