aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-k12.c
diff options
context:
space:
mode:
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-30 17:17:14 +0000
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-30 17:17:14 +0000
commite2baa3c2f5b5de22855e5ed937001589b1549083 (patch)
treee74022c89cd0c3e9c3ad5431ddc07d112152e74e /epan/dissectors/packet-k12.c
parenta959abc0f64da683df0c205a0bef593d4cb846bd (diff)
Comment parameters in call to uat_new()
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27133 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-k12.c')
-rw-r--r--epan/dissectors/packet-k12.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-k12.c b/epan/dissectors/packet-k12.c
index 36f419f4cc..3ec02582c5 100644
--- a/epan/dissectors/packet-k12.c
+++ b/epan/dissectors/packet-k12.c
@@ -453,12 +453,12 @@ proto_register_k12(void)
k12_uat = uat_new("K12 Protocols",
sizeof(k12_handles_t),
- "k12_protos",
- TRUE,
- (void**) &k12_handles,
- &nk12_handles,
- UAT_CAT_FFMT,
- "ChK12ProtocolsSection",
+ "k12_protos", /* filename */
+ TRUE, /* from_profile */
+ (void**) &k12_handles, /* data_ptr */
+ &nk12_handles, /* numitems_ptr */
+ UAT_CAT_FFMT, /* category */
+ "ChK12ProtocolsSection", /* help */
k12_copy_cb,
k12_update_cb,
k12_free_cb,