git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5676 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2007-08-29 18:56:04 +00:00
parent 30ffb593c0
commit 88e5470c52
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ static size_t file_callback(void *ptr, size_t size, size_t nmemb, void *data)
{
register unsigned int realsize = (unsigned int) (size * nmemb);
struct config_data *config_data = data;
write(config_data->fd, ptr, realsize);
int x;
x = write(config_data->fd, ptr, realsize);
return realsize;
}