summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-sita.c
diff options
context:
space:
mode:
authorGerasimos Dimitriadis <dimeg@intracom.gr>2009-11-17 18:35:27 +0000
committerGerasimos Dimitriadis <dimeg@intracom.gr>2009-11-17 18:35:27 +0000
commitc840cdd5a07a65b3903e443f1ed1203e60c5eba6 (patch)
tree0c1a8f4c587328fa6f7313f95799faaab62acfb4 /epan/dissectors/packet-sita.c
parent99b8600eca893ba19631de2b7438d587ceb71350 (diff)
downloadwireshark-c840cdd5a07a65b3903e443f1ed1203e60c5eba6.tar.gz
Remove the address operator from value_string arrays fed to VALS()
svn path=/trunk/; revision=30995
Diffstat (limited to 'epan/dissectors/packet-sita.c')
-rw-r--r--epan/dissectors/packet-sita.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sita.c b/epan/dissectors/packet-sita.c
index b687eb2cce..3afe6cce80 100644
--- a/epan/dissectors/packet-sita.c
+++ b/epan/dissectors/packet-sita.c
@@ -233,7 +233,7 @@ void
proto_register_sita(void)
{
static hf_register_info hf[] = {
- { &hf_proto, { "Protocol", "sita.errors.protocol", FT_UINT8, BASE_HEX, VALS(&tfs_sita_proto), 0, "Protocol value", HFILL }},
+ { &hf_proto, { "Protocol", "sita.errors.protocol", FT_UINT8, BASE_HEX, VALS(tfs_sita_proto), 0, "Protocol value", HFILL }},
{ &hf_dir, { "Direction", "sita.flags.flags", FT_BOOLEAN, 8, TFS(&tfs_sita_flags), SITA_FRAME_DIR, "TRUE 'from Remote', FALSE 'from Local'", HFILL }},
{ &hf_droppedframe, { "No Buffers", "sita.flags.droppedframe", FT_BOOLEAN, 8, TFS(&tfs_sita_error), SITA_ERROR_NO_BUFFER, "TRUE if Buffer Failure", HFILL }},