From 67e0aea25850b8286f750e6458e5de741e6cb3b5 Mon Sep 17 00:00:00 2001 From: oharboe Date: Fri, 29 Feb 2008 11:16:38 +0000 Subject: Summary: passing of variable argument list reduced, strings sent to logging are now formatted just once - more efficient. As a result, ugly string malloc+strcpy are not needed anymore. git-svn-id: svn://svn.berlios.de/openocd/trunk@386 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/helper/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/helper/options.c') diff --git a/src/helper/options.c b/src/helper/options.c index 6e1f10b7..35ab0f5d 100644 --- a/src/helper/options.c +++ b/src/helper/options.c @@ -48,7 +48,7 @@ static struct option long_options[] = int configuration_output_handler(struct command_context_s *context, char* line) { - INFO_SAMELINE(line); + INFO_N(line); return ERROR_OK; } -- cgit v1.2.3