summaryrefslogtreecommitdiff
path: root/source/mvd_client.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2010-08-02 14:26:44 +0000
committerAndrey Nazarov <skuller@skuller.net>2010-08-02 14:26:44 +0000
commit5c73f165141b30d93309d25e1324bc0170eb4da5 (patch)
treed84f0c561cff6c9549f3f618f943f7fa15704c71 /source/mvd_client.c
parent3c5ecddd3696c142bf730e808c8184511b525ae3 (diff)
Made Q_ClearStr operate in place and renamed it to COM_strclr.
Removed unused Q_HightlightStr function. Changed Q_ prefix on several functions to COM_ for consistency. Clear the message string before passing it to Cmd_ExecTrigger.
Diffstat (limited to 'source/mvd_client.c')
-rw-r--r--source/mvd_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/mvd_client.c b/source/mvd_client.c
index 86a72c3..56c3af8 100644
--- a/source/mvd_client.c
+++ b/source/mvd_client.c
@@ -1506,7 +1506,7 @@ static void list_recordings( void ) {
if( pos < 0 ) {
strcpy( buffer, "???" );
} else {
- Q_FormatFileSize( buffer, pos, sizeof( buffer ) );
+ COM_FormatFileSize( buffer, pos, sizeof( buffer ) );
}
} else {
strcpy( buffer, "-" );