aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/netmon.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2009-06-02 07:18:18 +0000
committerGuy Harris <guy@alum.mit.edu>2009-06-02 07:18:18 +0000
commit0c95d973d33e425757a1c88332398a804a552a52 (patch)
treeed42bcb8ede19873ceec548d5d83da102c8e3747 /wiretap/netmon.c
parent38638f9fb154d5eb4d00435bee9ec0ab726f83cb (diff)
No newlines in the additional-error-information string, please.
svn path=/trunk/; revision=28584
Diffstat (limited to 'wiretap/netmon.c')
-rw-r--r--wiretap/netmon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/netmon.c b/wiretap/netmon.c
index 66b1cacad6..e1d97c6660 100644
--- a/wiretap/netmon.c
+++ b/wiretap/netmon.c
@@ -409,7 +409,7 @@ static gboolean netmon_read(wtap *wth, int *err, gchar **err_info,
* have a pseudo-header.
*/
*err = WTAP_ERR_BAD_RECORD;
- *err_info = g_strdup_printf("netmon: ATM file has a %u-byte packet, too small to have even an ATM pseudo-header\n",
+ *err_info = g_strdup_printf("netmon: ATM file has a %u-byte packet, too small to have even an ATM pseudo-header",
packet_size);
return FALSE;
}