mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-27 06:13:01 +00:00
vsnprintf -> Q_vsnprintf
This commit is contained in:
parent
302b1b49ff
commit
5728fc2ec8
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ void emit(const char* fmt, ...)
|
||||||
va_list ap;
|
va_list ap;
|
||||||
char line[4096];
|
char line[4096];
|
||||||
va_start(ap, fmt);
|
va_start(ap, fmt);
|
||||||
vsnprintf(line, sizeof(line), fmt, ap);
|
Q_vsnprintf(line, sizeof(line), fmt, ap);
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
assemble_line(line, strlen(line));
|
assemble_line(line, strlen(line));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue