mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +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;
|
||||
char line[4096];
|
||||
va_start(ap, fmt);
|
||||
vsnprintf(line, sizeof(line), fmt, ap);
|
||||
Q_vsnprintf(line, sizeof(line), fmt, ap);
|
||||
va_end(ap);
|
||||
assemble_line(line, strlen(line));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue