From 1559379f39cfa22ef0f6549715e86107a9530728 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20DEL=20NERO?= Date: Mon, 13 Nov 2023 18:42:12 +0100 Subject: [PATCH] fix. --- lib_jtag_core/src/script/script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_jtag_core/src/script/script.c b/lib_jtag_core/src/script/script.c index bbd6952..e5c059d 100644 --- a/lib_jtag_core/src/script/script.c +++ b/lib_jtag_core/src/script/script.c @@ -1535,7 +1535,7 @@ static int cmd_print_devs_list( script_ctx * ctx, char * line) ptr = get_id_str(ctx,i); if(ptr) { - ctx->script_printf( ctx, MSG_INFO_0, "%s\n", ); + ctx->script_printf( ctx, MSG_INFO_0, "%s\n", ptr ); free(ptr); } }