Minor bugfix:  command_print_sameline() is what the
headers declare; make the code match.

Minor improvement:  make the printf format params always be const.
---
 src/helper/command.c |    6 +++---
 src/helper/command.h |    6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

Minor bugfix:  command_print_sameline() is what the
headers declare; make the code match.

Minor improvement:  make the printf format params always be const.
---
 src/helper/command.c |    6 +++---
 src/helper/command.h |    6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -337,7 +337,7 @@ void command_output_text(command_context
 	}
 }
 
-void command_print_n(command_context_t *context, char *format, ...)
+void command_print_sameline(command_context_t *context, const char *format, ...)
 {
 	char *string;
 
@@ -361,7 +361,7 @@ void command_print_n(command_context_t *
 	va_end(ap);
 }
 
-void command_print(command_context_t *context, char *format, ...)
+void command_print(command_context_t *context, const char *format, ...)
 {
 	char *string;
 
@@ -497,7 +497,7 @@ int command_run_line(command_context_t *
 	return retval;
 }
 
-int command_run_linef(command_context_t *context, char *format, ...)
+int command_run_linef(command_context_t *context, const char *format, ...)
 {
 	int retval=ERROR_FAIL;
 	char *string;
--- a/src/helper/command.h
+++ b/src/helper/command.h
@@ -84,12 +84,12 @@ extern int command_context_mode(command_
 extern command_context_t* command_init(void);
 extern int command_done(command_context_t *context);
 
-extern void command_print(command_context_t *context, char *format, ...)
+extern void command_print(command_context_t *context, const char *format, ...)
 		__attribute__ ((format (printf, 2, 3)));
-extern void command_print_sameline(command_context_t *context, char *format, ...)
+extern void command_print_sameline(command_context_t *context, const char *format, ...)
 		__attribute__ ((format (printf, 2, 3)));
 extern int command_run_line(command_context_t *context, char *line);
-extern int command_run_linef(command_context_t *context, char *format, ...)
+extern int command_run_linef(command_context_t *context, const char *format, ...)
 		__attribute__ ((format (printf, 2, 3)));
 extern void command_output_text(command_context_t *context, const char *data);
 
_______________________________________________
Openocd-development mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to