aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-05-22 04:15:01 +0000
committerGuy Harris <guy@alum.mit.edu>2004-05-22 04:15:01 +0000
commit88d2d10fb48176a61c881e4b643a0293f4621bd3 (patch)
tree26a36ee9767edbbe7c2da320e09766fc36d51ae7 /gtk
parentcdcf8c47fa985058d7b1a7a26abe3cdbf4a5bd3b (diff)
Don't put a newline at the end of the compiled-with version information
- we don't put it at the end of the run-time version information. Add newlines into formats used with that information where appropriate (the "About" dialog box already had a newline in the format). svn path=/trunk/; revision=10950
Diffstat (limited to 'gtk')
-rw-r--r--gtk/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/main.c b/gtk/main.c
index 17db2c843b..40e89749ef 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -1,6 +1,6 @@
/* main.c
*
- * $Id: main.c,v 1.437 2004/05/21 00:18:46 guy Exp $
+ * $Id: main.c,v 1.438 2004/05/22 04:15:01 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1310,7 +1310,7 @@ print_usage(gboolean print_ver) {
#ifdef CVSVERSION
" (" CVSVERSION ")"
#endif
- "\n%s\n%s\n",
+ "\n%s\n\n%s\n",
comp_info_str->str, runtime_info_str->str);
} else {
output = stderr;
@@ -1347,7 +1347,7 @@ show_version(void)
#ifdef CVSVERSION
" (" CVSVERSION ")"
#endif
- "\n%s\n%s\n",
+ "\n%s\n\n%s\n",
comp_info_str->str, runtime_info_str->str);
}