source tidy

This commit is contained in:
dborth 2010-07-22 07:40:16 +00:00
parent 7d4300b5f9
commit 173bad8c6f

View File

@ -50,12 +50,9 @@ void UpdateCheck()
if(!updateChecked && networkInit && (isMounted[DEVICE_SD] || isMounted[DEVICE_USB]))
{
updateChecked = true;
static char url[128];
snprintf(url, 128, "http://vba-wii.googlecode.com/svn/trunk/update.xml");
u8 * tmpbuffer = (u8 *)memalign(32,32768);
memset(tmpbuffer, 0, 32768);
u8 tmpbuffer[256];
if (http_request(url, NULL, tmpbuffer, 32768, SILENT) > 0)
if (http_request("http://vba-wii.googlecode.com/svn/trunk/update.xml", NULL, tmpbuffer, 256, SILENT) > 0)
{
mxml_node_t *xml;
mxml_node_t *item;
@ -103,7 +100,6 @@ void UpdateCheck()
mxmlDelete(xml);
}
}
free(tmpbuffer);
}
}