]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Clean up trailing whitespaces
authorWolfgang Bumiller <blub@speed.at>
Sun, 30 Dec 2012 10:03:59 +0000 (11:03 +0100)
committerWolfgang Bumiller <blub@speed.at>
Sun, 30 Dec 2012 10:03:59 +0000 (11:03 +0100)
parser.c

index 51500eff4859180188f159243ab4f2ff3450782b..b32f6230e2f50be7c3766737bf5db9d516f16d36 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -1374,7 +1374,6 @@ static bool parser_close_call(parser_t *parser, shunt *sy)
         return false;
     }
 
-    
     if (!fun->expression.next) {
         parseerror(parser, "could not determine function return type");
         return false;
@@ -1398,7 +1397,7 @@ static bool parser_close_call(parser_t *parser, shunt *sy)
                     "call to `%s` (deprecated: %s)\n"
                     "-> `%s` declared here: %s:%i",
                     fval->name, fval->desc, fval->name, ast_ctx(fun).file,
-                    ast_ctx(fun).line); 
+                    ast_ctx(fun).line);
         }
 
         if (vec_size(fun->expression.params) != paramcount &&