From: Dale Weiler Date: Tue, 10 Apr 2012 00:12:00 +0000 (-0400) Subject: Formatting X-Git-Tag: 0.1-rc1~706 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4b6e1004cce6d7ce159270bac6df1d09d465a0db;p=xonotic%2Fgmqcc.git Formatting --- diff --git a/typedef.c b/typedef.c index fcd2b18..6acfa85 100644 --- a/typedef.c +++ b/typedef.c @@ -168,10 +168,10 @@ int typedef_add(const char *from, const char *to) { /* check if the type exists first */ if (strncmp(from, "void", sizeof("void")) == 0 || - strncmp(from, "string", sizeof("string")) == 0 || - strncmp(from, "float", sizeof("float")) == 0 || - strncmp(from, "vector", sizeof("vector")) == 0 || - strncmp(from, "entity", sizeof("entity")) == 0) { + strncmp(from, "string", sizeof("string")) == 0 || + strncmp(from, "float", sizeof("float")) == 0 || + strncmp(from, "vector", sizeof("vector")) == 0 || + strncmp(from, "entity", sizeof("entity")) == 0) { typedef_table[hash] = mem_a(sizeof(typedef_node)); typedef_table[hash]->name = strdup(from);