aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wspython
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-08-06 20:53:47 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-08-06 20:53:47 +0000
commit9cfac1227d8fd1f6de1d9e47489ea49616a2bee2 (patch)
treef48731d0b0c293e6af6f3476eae8fef06908059f /epan/wspython
parent72ea2f9c9c63c7e5c6270383888ad32683d96edf (diff)
Replace hfinfo pointer to same_name_prev, with same_name_prev_id.
svn path=/trunk/; revision=51175
Diffstat (limited to 'epan/wspython')
-rw-r--r--epan/wspython/wspy_proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/wspython/wspy_proto.c b/epan/wspython/wspy_proto.c
index e315a73e2a..d28b9526eb 100644
--- a/epan/wspython/wspy_proto.c
+++ b/epan/wspython/wspy_proto.c
@@ -70,7 +70,7 @@ void hf_register_info_add(hf_register_info *hf, guint8 index,
hf[index].hfinfo.parent = 0;
hf[index].hfinfo.ref_type = HF_REF_TYPE_NONE;
hf[index].hfinfo.same_name_next = NULL;
- hf[index].hfinfo.same_name_prev = NULL;
+ hf[index].hfinfo.same_name_prev_id = -1;
}
void hf_register_info_print(hf_register_info *hf, guint8 size)