diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-03-25 16:44:01 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-03-25 16:44:01 +0000 |
commit | 37e48fb6ad3a6081c6bf226021b2aa30ad09673c (patch) | |
tree | 781e402cdf4a32eb536fc64177c04638a7860eb0 /code | |
parent | 4d5e60a5f4cbe13e2c17444e8ebf5399cf2a7514 (diff) | |
download | ioquake3-aero-37e48fb6ad3a6081c6bf226021b2aa30ad09673c.tar.gz ioquake3-aero-37e48fb6ad3a6081c6bf226021b2aa30ad09673c.zip |
vsnprintf -> Q_vsnprintf
git-svn-id: svn://svn.icculus.org/quake3/trunk@1276 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code')
-rw-r--r-- | code/qcommon/vm_x86_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/vm_x86_64.c b/code/qcommon/vm_x86_64.c index 21fa979..16f2d80 100644 --- a/code/qcommon/vm_x86_64.c +++ b/code/qcommon/vm_x86_64.c @@ -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)); } |