r1276 - trunk/code/qcommon
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Tue Mar 25 12:44:01 EDT 2008
Author: thilo
Date: 2008-03-25 12:44:01 -0400 (Tue, 25 Mar 2008)
New Revision: 1276
Modified:
trunk/code/qcommon/vm_x86_64.c
Log:
vsnprintf -> Q_vsnprintf
Modified: trunk/code/qcommon/vm_x86_64.c
===================================================================
--- trunk/code/qcommon/vm_x86_64.c 2008-03-25 16:20:03 UTC (rev 1275)
+++ trunk/code/qcommon/vm_x86_64.c 2008-03-25 16:44:01 UTC (rev 1276)
@@ -234,7 +234,7 @@
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));
}
More information about the quake3-commits
mailing list