aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/cl_ui.c
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-12-30 12:32:54 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2006-12-30 12:32:54 +0000
commitf0fc390a026dfff392ba465b76f60f3f0e5a70e2 (patch)
treeadd91b1a36f3c11bf1b5b6a5fd5aea145c1fef52 /code/client/cl_ui.c
parentca2cf9c99df7ee76f13b7c9fa2d6ad706a3968fa (diff)
downloadioquake3-aero-f0fc390a026dfff392ba465b76f60f3f0e5a70e2.tar.gz
ioquake3-aero-f0fc390a026dfff392ba465b76f60f3f0e5a70e2.zip
- tag more functions with gnu format attribute
- fix format string bugs. still some left git-svn-id: svn://svn.icculus.org/quake3/trunk@1023 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client/cl_ui.c')
-rw-r--r--code/client/cl_ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/client/cl_ui.c b/code/client/cl_ui.c
index e6aae53..0dc8774 100644
--- a/code/client/cl_ui.c
+++ b/code/client/cl_ui.c
@@ -767,11 +767,11 @@ The ui module is making a system call
intptr_t CL_UISystemCalls( intptr_t *args ) {
switch( args[0] ) {
case UI_ERROR:
- Com_Error( ERR_DROP, "%s", VMA(1) );
+ Com_Error( ERR_DROP, "%s", (const char*)VMA(1) );
return 0;
case UI_PRINT:
- Com_Printf( "%s", VMA(1) );
+ Com_Printf( "%s", (const char*)VMA(1) );
return 0;
case UI_MILLISECONDS: