From ca67cd7cce7bd2544181724bc0b771f9966edc28 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 23 Jan 2015 22:12:55 +0100 Subject: [PATCH] Change variable name from w to data --- runloop.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runloop.c b/runloop.c index f568eeea16..16491b7f5b 100644 --- a/runloop.c +++ b/runloop.c @@ -891,10 +891,10 @@ static int rarch_main_iterate_http_transfer(void) static int rarch_main_iterate_http_parse(void) { size_t len; - char *w = (char*)net_http_data(g_extern.http_handle, &len, false); + char *data = (char*)net_http_data(g_extern.http_handle, &len, false); - if (w && g_extern.http_handle->cb) - g_extern.http_handle->cb(w, len); + if (data && g_extern.http_handle->cb) + g_extern.http_handle->cb(data, len); net_http_delete(g_extern.http_handle);