aboutsummaryrefslogtreecommitdiffstats
path: root/epan/conversation_table.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-08-05 16:10:44 -0400
committerBill Meier <wmeier@newsguy.com>2014-08-05 20:42:21 +0000
commitf3dd7fe1eb5348922b079db2bdede700d4d28fbd (patch)
tree7382b5da9a3c1de3eba0e91aed54c087fcfea549 /epan/conversation_table.c
parentdfe331e35e0400942d3ad9e4b5f8c84369546b6d (diff)
Fix whitespace/indentation to match editor modelines.
Change-Id: I3445ae22f10584582d465bf632942e016f5f70ca Reviewed-on: https://code.wireshark.org/review/3452 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/conversation_table.c')
-rw-r--r--epan/conversation_table.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/conversation_table.c b/epan/conversation_table.c
index 57bbb6f9d7..61ec310a19 100644
--- a/epan/conversation_table.c
+++ b/epan/conversation_table.c
@@ -88,14 +88,14 @@ dissector_conversation_init(const char *opt_arg, void* userdata)
*/
register_ct_t* get_conversation_by_proto_id(int proto_id)
{
- GSList *ct;
- register_ct_t *table;
+ GSList *ct;
+ register_ct_t *table;
- for(ct = registered_ct_tables; ct != NULL; ct = g_slist_next(ct)){
- table = (register_ct_t*)ct->data;
- if ((table) && (table->proto_id == proto_id))
+ for(ct = registered_ct_tables; ct != NULL; ct = g_slist_next(ct)){
+ table = (register_ct_t*)ct->data;
+ if ((table) && (table->proto_id == proto_id))
return table;
- }
+ }
return NULL;
}