summaryrefslogtreecommitdiff
path: root/src/helper/options.c
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-02-25 17:32:53 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-02-25 17:32:53 +0000
commit7f1944a47823fc48eef244257b80675a226f86b8 (patch)
treef070f312502705475fd5cb7918fcd4a124487ae5 /src/helper/options.c
parent375c5f85d2871921b10125e2bc54eba0c338a67b (diff)
downloadopenocd+libswd-7f1944a47823fc48eef244257b80675a226f86b8.tar.gz
openocd+libswd-7f1944a47823fc48eef244257b80675a226f86b8.tar.bz2
openocd+libswd-7f1944a47823fc48eef244257b80675a226f86b8.tar.xz
openocd+libswd-7f1944a47823fc48eef244257b80675a226f86b8.zip
Pavel Chromy
- multiple log listeners - added OUTPUT() to replace printf - fix formatting git-svn-id: svn://svn.berlios.de/openocd/trunk@346 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/options.c')
-rw-r--r--src/helper/options.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/helper/options.c b/src/helper/options.c
index 1e717be8..4232cb44 100644
--- a/src/helper/options.c
+++ b/src/helper/options.c
@@ -113,13 +113,13 @@ int parse_cmdline_args(struct command_context_s *cmd_ctx, int argc, char *argv[]
if (help_flag)
{
- printf("Open On-Chip Debugger\n(c) 2005 by Dominic Rath\n\n");
- printf("--help | -h\tdisplay this help\n");
- printf("--file | -f\tuse configuration file <name>\n");
- printf("--search | -s\tdir to search for config files and scripts.\n");
- printf("--debug | -d\tset debug level <0-3>\n");
- printf("--log_output | -l\tredirect log output to file <name>\n");
- printf("--command | -c\trun <command>\n");
+ OUTPUT("Open On-Chip Debugger\n(c) 2005 by Dominic Rath\n\n");
+ OUTPUT("--help | -h\tdisplay this help\n");
+ OUTPUT("--file | -f\tuse configuration file <name>\n");
+ OUTPUT("--search | -s\tdir to search for config files and scripts.\n");
+ OUTPUT("--debug | -d\tset debug level <0-3>\n");
+ OUTPUT("--log_output | -l\tredirect log output to file <name>\n");
+ OUTPUT("--command | -c\trun <command>\n");
exit(-1);
}