aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-03-29 16:11:11 +0000
committerGerald Combs <gerald@wireshark.org>2005-03-29 16:11:11 +0000
commit8e79a1852fe12cd6e3044c23cc4d5bc50c71ecaf (patch)
tree4ebfc06344cb04076eb02699bc5d71a5ce49c13e /epan
parent4198c72a69f9060db9137b01683c6430c6717d65 (diff)
Use an offset of 0 in PER_NOT_DECODED_YET() so that we don't generate a
dissector bug error. svn path=/trunk/; revision=13970
Diffstat (limited to 'epan')
-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); \