From c6bde419ba16d6c3f48941ee5cadb717aead3221 Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 27 Feb 2007 21:15:48 +0000 Subject: [PATCH] fix missing { character git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6920 d7cf8633-e32d-0410-b094-e92efae38249 --- libcurl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcurl.c b/libcurl.c index 7c30291d..4061f551 100644 --- a/libcurl.c +++ b/libcurl.c @@ -3,7 +3,7 @@ #include "libcurl.h" static cvar_t cl_curl_maxdownloads = {CVAR_SAVE, "cl_curl_maxdownloads","1", "maximum number of concurrent HTTP/FTP downloads"}; -static cvar_t cl_curl_maxspeed = CVAR_SAVE, "cl_curl_maxspeed","100", "maximum download speed (KiB/s)"}; +static cvar_t cl_curl_maxspeed = {CVAR_SAVE, "cl_curl_maxspeed","100", "maximum download speed (KiB/s)"}; static cvar_t sv_curl_defaulturl = {CVAR_SAVE, "sv_curl_defaulturl","", "default autodownload source URL"}; static cvar_t sv_curl_serverpackages = {CVAR_SAVE, "sv_curl_serverpackages","", "list of required files for the clients, separated by spaces"}; static cvar_t cl_curl_enabled = {CVAR_SAVE, "cl_curl_enabled","0", "whether client's download support is enabled"}; -- 2.39.2