Removed more unused variables.

Partially fixes Bugzilla #3782.
This commit is contained in:
Ryan C. Gordon 2009-09-15 03:19:43 +00:00
parent 815026072a
commit d56a093317
3 changed files with 3 additions and 8 deletions

View file

@ -104,7 +104,7 @@ SV_SetConfigstring
===============
*/
void SV_SetConfigstring (int index, const char *val) {
int len, i;
int i;
client_t *client;
if ( index < 0 || index >= MAX_CONFIGSTRINGS ) {
@ -140,8 +140,6 @@ void SV_SetConfigstring (int index, const char *val) {
continue;
}
len = strlen( val );
SV_SendConfigstring(client, index);
}
}