]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - ftepp.c
ast_binary->right_first and an execution order check
[xonotic/gmqcc.git] / ftepp.c
diff --git a/ftepp.c b/ftepp.c
index e79dcd751c46db36506665524966b623f588b89b..5f414f358bb868df23815d875d0579ad9067ac41 100644 (file)
--- a/ftepp.c
+++ b/ftepp.c
@@ -184,7 +184,7 @@ static char *ftepp_predef_timestamp(lex_file *context) {
     char       *value;
     size_t      size;
 #ifdef _MSC_VER
-       char        buffer[64];
+    char        buffer[64];
 #endif
     if (stat(context->name, &finfo))
         return util_strdup("\"<failed to determine timestamp>\"");
@@ -197,8 +197,8 @@ static char *ftepp_predef_timestamp(lex_file *context) {
 #ifndef _MSC_VER
     find  = ctime(&finfo.st_mtime);
 #else
-       ctime_s(buffer, sizeof(buffer), &finfo.st_mtime);
-       find = buffer;
+    ctime_s(buffer, sizeof(buffer), &finfo.st_mtime);
+    find = buffer;
 #endif
 
     value = (char*)mem_a(strlen(find) + 1);