]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - typedef.c
whitespace
[xonotic/gmqcc.git] / typedef.c
index d51693ebd7d0560a2d108578d75a50953d532a42..106310a79c1650283a12f8f4d89bb6f1a4fcb73b 100644 (file)
--- a/typedef.c
+++ b/typedef.c
@@ -73,7 +73,7 @@ int typedef_add(struct lex_file *file, const char *from, const char *to) {
         /* search the typedefs for it (typedef-a-typedef?) */
         typedef_node *find = typedef_table[typedef_hash(from)];
         if (find) {
-            typedef_table[hash]       = mem_a(sizeof(typedef_node));
+            typedef_table[hash] = mem_a(sizeof(typedef_node));
             if (typedef_table[hash])
                 typedef_table[hash]->name = util_strdup(find->name);
             else