summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authormifi <mifi@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-02-22 16:49:07 +0000
committermifi <mifi@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-02-22 16:49:07 +0000
commit34424b4bb532437f61f64e650b42883e1f4d1ee7 (patch)
tree03c8cf6c07a0a446d61aedc2c916fd2b1b62ae03 /src/openocd.c
parent3c58540e0283a452a7606ba22e693df10d746d54 (diff)
downloadopenocd+libswd-34424b4bb532437f61f64e650b42883e1f4d1ee7.tar.gz
openocd+libswd-34424b4bb532437f61f64e650b42883e1f4d1ee7.tar.bz2
openocd+libswd-34424b4bb532437f61f64e650b42883e1f4d1ee7.tar.xz
openocd+libswd-34424b4bb532437f61f64e650b42883e1f4d1ee7.zip
- cosmetic changes to print out version without line number/time
git-svn-id: svn://svn.berlios.de/openocd/trunk@319 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/openocd.c b/src/openocd.c
index a8f12a8b..99e56689 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -90,8 +90,11 @@ int main(int argc, char *argv[])
return EXIT_FAILURE;
DEBUG("log init complete");
- INFO( OPENOCD_VERSION );
- INFO( "$URL$");
+ printf( OPENOCD_VERSION );
+ printf( "\n$URL$\n");
+
+ DEBUG( OPENOCD_VERSION );
+ DEBUG( "$URL$");
cfg_cmd_ctx = copy_command_context(cmd_ctx);
cfg_cmd_ctx->mode = COMMAND_CONFIG;