aboutsummaryrefslogtreecommitdiffstats
path: root/packet-gprs-ns.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-02-18 10:11:52 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-02-18 10:11:52 +0000
commita39e3a1570b8bd29b5b0f0cf9142aca85b007f7c (patch)
tree9c454cc39449486a445275000e41eec9baa0049d /packet-gprs-ns.c
parenta04e58be1060d9e77a8fe816e157333bfe59990f (diff)
Newlines don't belong in format strings for the "proto_tree_add"
routines. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10094 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-gprs-ns.c')
-rw-r--r--packet-gprs-ns.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-gprs-ns.c b/packet-gprs-ns.c
index 7a1a21aecf..5c7b4a59de 100644
--- a/packet-gprs-ns.c
+++ b/packet-gprs-ns.c
@@ -3,7 +3,7 @@
* dissection
* Copyright 2003, Josef Korelus <jkor@quick.cz>
*
- * $Id: packet-gprs-ns.c,v 1.7 2003/11/14 18:59:00 guy Exp $
+ * $Id: packet-gprs-ns.c,v 1.8 2004/02/18 10:11:51 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -154,7 +154,7 @@ process_tlvs(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
if (tree) {
proto_tree_add_text(tree,
tvb, offset, length,
- "Bad cause length %u, should be 1\n",
+ "Bad cause length %u, should be 1",
length);
}
}
@@ -176,7 +176,7 @@ process_tlvs(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
if (tree) {
proto_tree_add_text(tree,
tvb, offset, length,
- "Bad NS-VCI length %u, should be 2\n",
+ "Bad NS-VCI length %u, should be 2",
length);
}
}
@@ -210,7 +210,7 @@ process_tlvs(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
if (tree) {
proto_tree_add_text(tree,
tvb, offset, length,
- "Bad BVCI length %u, should be 2\n",
+ "Bad BVCI length %u, should be 2",
length);
}
}
@@ -232,7 +232,7 @@ process_tlvs(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
if (tree) {
proto_tree_add_text(tree,
tvb, offset, length,
- "Bad NSEI length %u, should be 2\n",
+ "Bad NSEI length %u, should be 2",
length);
}
}