aboutsummaryrefslogtreecommitdiffstats
path: root/packet-trmac.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-trmac.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-trmac.c')
-rw-r--r--packet-trmac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-trmac.c b/packet-trmac.c
index 0d15d53edd..86e24a00f3 100644
--- a/packet-trmac.c
+++ b/packet-trmac.c
@@ -2,7 +2,7 @@
* Routines for Token-Ring Media Access Control
* Gilbert Ramirez <gram@alumni.rice.edu>
*
- * $Id: packet-trmac.c,v 1.38 2002/08/28 21:00:36 jmayer Exp $
+ * $Id: packet-trmac.c,v 1.39 2004/02/18 10:11:52 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -293,7 +293,7 @@ dissect_trmac(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
mv_val = tvb_get_guint8(tvb, 3);
/* Interpret the major vector */
- mv_text = val_to_str(mv_val, major_vector_vs, "Unknown Major Vector: %d\n");
+ mv_text = val_to_str(mv_val, major_vector_vs, "Unknown Major Vector: %u");
if (check_col(pinfo->cinfo, COL_INFO))
col_add_str(pinfo->cinfo, COL_INFO, mv_text);