Whitespace cleanup.
authorStig Bjørlykke <stig@bjorlykke.org>
Tue, 6 Sep 2011 09:09:36 +0000 (09:09 -0000)
committerStig Bjørlykke <stig@bjorlykke.org>
Tue, 6 Sep 2011 09:09:36 +0000 (09:09 -0000)
svn path=/trunk/; revision=38893

epan/epan.c
epan/packet.c

index f055c2dd7f195864588c0878b3330b1f303d691c..4aebc057e26dc2f904fcda913257f68538c2df6e 100644 (file)
@@ -160,7 +160,7 @@ epan_circuit_cleanup(void)
 }
 
 epan_dissect_t*
-epan_dissect_init(epan_dissect_t       *edt, const gboolean create_proto_tree, const gboolean proto_tree_visible)
+epan_dissect_init(epan_dissect_t *edt, const gboolean create_proto_tree, const gboolean proto_tree_visible)
 {
        g_assert(edt);
 
@@ -178,7 +178,7 @@ epan_dissect_init(epan_dissect_t    *edt, const gboolean create_proto_tree, const g
 epan_dissect_t*
 epan_dissect_new(const gboolean create_proto_tree, const gboolean proto_tree_visible)
 {
-       epan_dissect_t  *edt;
+       epan_dissect_t *edt;
 
        edt = g_new0(epan_dissect_t, 1);
 
index c6f0edfc901f20b881be83b88b51c88c623b0e1e..423665c361ba28547d58667f0d6cba4df77603eb 100644 (file)
@@ -747,7 +747,7 @@ dissector_add_uint(const char *name, const guint32 pattern, dissector_handle_t h
        dtbl_entry->current = handle;
        dtbl_entry->initial = dtbl_entry->current;
 
-/* do the table insertion */
+       /* do the table insertion */
        g_hash_table_insert( sub_dissectors->hash_table,
                             GUINT_TO_POINTER( pattern), (gpointer)dtbl_entry);
 
@@ -773,7 +773,7 @@ dissector_delete_uint(const char *name, const guint32 pattern,
        dissector_table_t sub_dissectors = find_dissector_table( name);
        dtbl_entry_t *dtbl_entry;
 
-/* sanity check */
+       /* sanity check */
        g_assert( sub_dissectors);
 
        /*
@@ -803,7 +803,7 @@ dissector_change_uint(const char *name, const guint32 pattern, dissector_handle_
        dissector_table_t sub_dissectors = find_dissector_table( name);
        dtbl_entry_t *dtbl_entry;
 
-/* sanity check */
+       /* sanity check */
        g_assert( sub_dissectors);
 
        /*
@@ -827,7 +827,7 @@ dissector_change_uint(const char *name, const guint32 pattern, dissector_handle_
        dtbl_entry->initial = NULL;
        dtbl_entry->current = handle;
 
-/* do the table insertion */
+       /* do the table insertion */
        g_hash_table_insert( sub_dissectors->hash_table,
                             GUINT_TO_POINTER( pattern), (gpointer)dtbl_entry);
 }
@@ -839,7 +839,7 @@ dissector_reset_uint(const char *name, const guint32 pattern)
        dissector_table_t sub_dissectors = find_dissector_table( name);
        dtbl_entry_t *dtbl_entry;
 
-/* sanity check */
+       /* sanity check */
        g_assert( sub_dissectors);
 
        /*
@@ -1011,7 +1011,7 @@ dissector_add_string(const char *name, const gchar *pattern,
        dtbl_entry->current = handle;
        dtbl_entry->initial = dtbl_entry->current;
 
-/* do the table insertion */
+       /* do the table insertion */
        g_hash_table_insert( sub_dissectors->hash_table, (gpointer)pattern,
                             (gpointer)dtbl_entry);
 
@@ -1038,7 +1038,7 @@ dissector_delete_string(const char *name, const gchar *pattern,
        dissector_table_t sub_dissectors = find_dissector_table( name);
        dtbl_entry_t *dtbl_entry;
 
-/* sanity check */
+       /* sanity check */
        g_assert( sub_dissectors);
 
        /*
@@ -1068,7 +1068,7 @@ dissector_change_string(const char *name, const gchar *pattern,
        dissector_table_t sub_dissectors = find_dissector_table( name);
        dtbl_entry_t *dtbl_entry;
 
-/* sanity check */
+       /* sanity check */
        g_assert( sub_dissectors);
 
        /*
@@ -1092,7 +1092,7 @@ dissector_change_string(const char *name, const gchar *pattern,
        dtbl_entry->initial = NULL;
        dtbl_entry->current = handle;
 
-/* do the table insertion */
+       /* do the table insertion */
        g_hash_table_insert( sub_dissectors->hash_table, (gpointer)pattern,
                             (gpointer)dtbl_entry);
 }
@@ -1104,7 +1104,7 @@ dissector_reset_string(const char *name, const gchar *pattern)
        dissector_table_t sub_dissectors = find_dissector_table( name);
        dtbl_entry_t *dtbl_entry;
 
-/* sanity check */
+       /* sanity check */
        g_assert( sub_dissectors);
 
        /*