From: mifi Date: Fri, 22 Feb 2008 16:49:07 +0000 (+0000) Subject: - cosmetic changes to print out version without line number/time X-Git-Tag: v0.1.0~970 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=34424b4bb532437f61f64e650b42883e1f4d1ee7 - 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 --- diff --git a/src/openocd.c b/src/openocd.c index a8f12a8b93..99e566893c 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;