From: Dale Weiler Date: Thu, 22 Nov 2012 18:12:47 +0000 (+0000) Subject: Remove requirement for E X-Git-Tag: 0.1.9~359 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=79bac33a400cbf39504fdaa4a52fc1a04985a957;p=xonotic%2Fgmqcc.git Remove requirement for E --- diff --git a/test.c b/test.c index 65002c9..e710e0c 100644 --- a/test.c +++ b/test.c @@ -514,7 +514,8 @@ task_template_t *task_template_compile(const char *file, const char *dir) { goto success; } else if (!strcmp(template->proceduretype, "-execute")) { if (!template->executeflags) { - con_err("template compile error: %s missing `E:` tag (use `$null` for exclude)\n", file); + /* default to $null */ + template->executeflags = util_strdup("$null"); goto failure; } if (!template->comparematch) {