aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee802a.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-10-05 15:57:05 -0400
committerBill Meier <wmeier@newsguy.com>2014-10-05 20:19:02 +0000
commit0b18d6cb77022494a875e6e0d9d2ad27fb6ac6d9 (patch)
tree8cb06839ae3a921f3238c5979da986e4c0358638 /epan/dissectors/packet-ieee802a.c
parente2bdfa101b4a60318c9d7ba3dc3487418b5951b6 (diff)
Add editor modelines; Adjust whitespace as needed.
Change-Id: I6e70c933ae61a97377235d67b2f6a1b3d67dc155 Reviewed-on: https://code.wireshark.org/review/4484 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/dissectors/packet-ieee802a.c')
-rw-r--r--epan/dissectors/packet-ieee802a.c23
1 files changed, 18 insertions, 5 deletions
diff --git a/epan/dissectors/packet-ieee802a.c b/epan/dissectors/packet-ieee802a.c
index 4de4d6b53a..ffb1cf64d7 100644
--- a/epan/dissectors/packet-ieee802a.c
+++ b/epan/dissectors/packet-ieee802a.c
@@ -58,7 +58,7 @@ static GHashTable *oui_info_table = NULL;
*/
void
ieee802a_add_oui(guint32 oui, const char *table_name, const char *table_ui_name,
- hf_register_info *hf_item)
+ hf_register_info *hf_item)
{
oui_info_t *new_info;
@@ -147,12 +147,12 @@ proto_register_ieee802a(void)
{
static hf_register_info hf[] = {
{ &hf_ieee802a_oui,
- { "Organization Code", "ieee802a.oui", FT_UINT24, BASE_HEX,
- NULL, 0x0, NULL, HFILL }},
+ { "Organization Code", "ieee802a.oui", FT_UINT24, BASE_HEX,
+ NULL, 0x0, NULL, HFILL }},
{ &hf_ieee802a_pid,
- { "Protocol ID", "ieee802a.pid", FT_UINT16, BASE_HEX,
- NULL, 0x0, NULL, HFILL }}
+ { "Protocol ID", "ieee802a.pid", FT_UINT16, BASE_HEX,
+ NULL, 0x0, NULL, HFILL }}
};
static gint *ett[] = {
&ett_ieee802a,
@@ -189,3 +189,16 @@ proto_reg_handoff_ieee802a(void)
if (oui_info_table != NULL)
g_hash_table_foreach(oui_info_table, register_hf, NULL);
}
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vi: set shiftwidth=8 tabstop=8 noexpandtab:
+ * :indentSize=8:tabSize=8:noTabs=false:
+ */