aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-12-13 00:05:14 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-12-13 00:05:14 +0000
commit3a35dd595c9faa0e3e9805b126d81601e6172205 (patch)
treef8b7e22da5c80c62c36d112bdaf95ba082e3dea9
parent07b56cf62fd2d13f362554649f300e2a9f5bb92c (diff)
Trivial: Spaces -> tabs
svn path=/trunk/; revision=54002
-rw-r--r--epan/dfilter/syntax-tree.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dfilter/syntax-tree.c b/epan/dfilter/syntax-tree.c
index abede8f227..df477f78f4 100644
--- a/epan/dfilter/syntax-tree.c
+++ b/epan/dfilter/syntax-tree.c
@@ -59,10 +59,10 @@ sttype_register(sttype_t *type)
/* Check input */
g_assert(type_id < STTYPE_NUM_TYPES);
- /* Don't re-register. */
- g_assert(type_list[type_id] == NULL);
+ /* Don't re-register. */
+ g_assert(type_list[type_id] == NULL);
- type_list[type_id] = type;
+ type_list[type_id] = type;
}
static sttype_t*
@@ -76,9 +76,9 @@ sttype_lookup(sttype_id_t type_id)
result = type_list[type_id];
/* Check output. */
- g_assert(result != NULL);
+ g_assert(result != NULL);
- return result;
+ return result;
}
@@ -90,7 +90,7 @@ stnode_new(sttype_id_t type_id, gpointer data)
node = g_new(stnode_t, 1);
node->magic = STNODE_MAGIC;
- node->deprecated_token = NULL;
+ node->deprecated_token = NULL;
node->inside_brackets = FALSE;
if (type_id == STTYPE_UNINITIALIZED) {