aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftypes-int.h
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2017-03-14 23:00:36 +0100
committerMichael Mann <mmann78@netscape.net>2017-03-14 23:40:10 +0000
commit5f4f62bde027b131dcfe1b3914e4bf9d4a3f6987 (patch)
tree074d78bc06ca6b81b8cf77887d5201c93ce18af8 /epan/ftypes/ftypes-int.h
parent42d410b8e37a5be47979758ae69dc33327e6369c (diff)
ftypes: move set_value_sinteger64 into the union
Delete set_value_sinteger64 from struct _ftype_t, make it part of the set_value union. Change-Id: I76668f0a6455c5d75c703cd4f440757601246bdb Reviewed-on: https://code.wireshark.org/review/20551 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx> Petri-Dish: Martin Kaiser <wireshark@kaiser.cx> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/ftypes/ftypes-int.h')
-rw-r--r--epan/ftypes/ftypes-int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/ftypes/ftypes-int.h b/epan/ftypes/ftypes-int.h
index 712f615e9d..1b583b7a67 100644
--- a/epan/ftypes/ftypes-int.h
+++ b/epan/ftypes/ftypes-int.h
@@ -100,10 +100,10 @@ struct _ftype_t {
FvalueSetUnsignedIntegerFunc set_value_uinteger;
FvalueSetSignedIntegerFunc set_value_sinteger;
FvalueSetUnsignedInteger64Func set_value_uinteger64;
+ FvalueSetSignedInteger64Func set_value_sinteger64;
} set_value;
/* could be union */
- FvalueSetSignedInteger64Func set_value_sinteger64;
FvalueSetFloatingFunc set_value_floating;
/* could be union */