[quake3-commits] r1833 - trunk/code/qcommon
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Mon Jan 31 16:13:37 EST 2011
Author: thilo
Date: 2011-01-31 16:13:37 -0500 (Mon, 31 Jan 2011)
New Revision: 1833
Modified:
trunk/code/qcommon/cvar.c
Log:
Windows doesn't know z in format string
Modified: trunk/code/qcommon/cvar.c
===================================================================
--- trunk/code/qcommon/cvar.c 2011-01-31 20:32:00 UTC (rev 1832)
+++ trunk/code/qcommon/cvar.c 2011-01-31 21:13:37 UTC (rev 1833)
@@ -1210,7 +1210,7 @@
}
vmCvar->modificationCount = cv->modificationCount;
if ( strlen(cv->string)+1 > MAX_CVAR_VALUE_STRING )
- Com_Error( ERR_DROP, "Cvar_Update: src %s length %zd exceeds MAX_CVAR_VALUE_STRING",
+ Com_Error( ERR_DROP, "Cvar_Update: src %s length %d exceeds MAX_CVAR_VALUE_STRING",
cv->string,
strlen(cv->string));
Q_strncpyz( vmCvar->string, cv->string, MAX_CVAR_VALUE_STRING );
More information about the quake3-commits
mailing list