aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2011-09-06 09:09:36 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2011-09-06 09:09:36 +0000
commitad6be9beb88be92298a45ced619db6659ff66dcf (patch)
treeb28defa9db32de636008af9d683a03a0f256b0d0 /epan/packet.c
parentd6daef25bba900e54b36ff5fcfb630b96a2f36e4 (diff)
Whitespace cleanup.
svn path=/trunk/; revision=38893
Diffstat (limited to 'epan/packet.c')
-rw-r--r--epan/packet.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/epan/packet.c b/epan/packet.c
index c6f0edfc90..423665c361 100644
--- a/epan/packet.c
+++ b/epan/packet.c
@@ -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);
/*