mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-22 02:31:28 +00:00
Merge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking
This commit is contained in:
commit
fac4e411bf
3 changed files with 2 additions and 3 deletions
|
@ -7,7 +7,7 @@ script: make && make check
|
|||
notifications:
|
||||
irc:
|
||||
channels:
|
||||
- "irc.freenode.org#kf-engine"
|
||||
- "irc.freenode.org#gmqcc"
|
||||
template:
|
||||
- "[%{commit} : %{author}] %{message}"
|
||||
- "%{build_url}"
|
||||
|
|
2
conout.c
2
conout.c
|
@ -326,7 +326,6 @@ int con_out(const char *fmt, ...) {
|
|||
return ln;
|
||||
}
|
||||
|
||||
#ifndef QCVM_EXECUTOR
|
||||
/*
|
||||
* Utility console message writes for lexer contexts. These will allow
|
||||
* for reporting of file:line based on lexer context, These are used
|
||||
|
@ -379,6 +378,7 @@ void con_cprintmsg(lex_ctx_t ctx, int lvl, const char *msgtype, const char *msg,
|
|||
va_end (va);
|
||||
}
|
||||
|
||||
#ifndef QCVM_EXECUTOR
|
||||
/* General error interface */
|
||||
size_t compile_errors = 0;
|
||||
size_t compile_warnings = 0;
|
||||
|
|
1
exec.c
1
exec.c
|
@ -30,7 +30,6 @@
|
|||
|
||||
#include "gmqcc.h"
|
||||
|
||||
opts_cmd_t opts; /* command line options */
|
||||
static void loaderror(const char *fmt, ...)
|
||||
{
|
||||
int err = errno;
|
||||
|
|
Loading…
Reference in a new issue