aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-per.h
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-29 16:11:11 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2005-03-29 16:11:11 +0000
commit88d02cdac0144c9194e2c9c936ef7d63644a0f11 (patch)
tree4ebfc06344cb04076eb02699bc5d71a5ce49c13e /epan/dissectors/packet-per.h
parent4d66449f1c055895f1353b5f231577153825ca86 (diff)
Use an offset of 0 in PER_NOT_DECODED_YET() so that we don't generate a
dissector bug error. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13970 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-per.h')
-rw-r--r--epan/dissectors/packet-per.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-per.h b/epan/dissectors/packet-per.h
index 1a624cf244..ce96e64ba8 100644
--- a/epan/dissectors/packet-per.h
+++ b/epan/dissectors/packet-per.h
@@ -27,7 +27,7 @@
#define __PACKET_PER_H__
#define PER_NOT_DECODED_YET(x) \
-proto_tree_add_text(tree, tvb, offset, 0, "something unknown here [%s]",x); \
+proto_tree_add_text(tree, tvb, 0, 0, "something unknown here [%s]",x); \
fprintf(stderr,"Not decoded yet in packet : %d [%s]\n", pinfo->fd->num,x); \
if (check_col(pinfo->cinfo, COL_INFO)){ \
col_append_fstr(pinfo->cinfo, COL_INFO, "[UNKNOWN PER: %s]", x); \