@@ -194,14 +194,14 @@ static uint32_t task_core_updater_get_core_crc(const char *core_path)
194194 {
195195 uint32_t crc = 0 ;
196196 /* Get CRC value */
197- bool success = intfstream_get_crc (core_file , & crc );
197+ bool ret = intfstream_get_crc (core_file , & crc );
198198
199199 /* Close core file */
200200 intfstream_close (core_file );
201201 free (core_file );
202202 core_file = NULL ;
203203
204- if (success )
204+ if (ret )
205205 return crc ;
206206 }
207207
@@ -216,9 +216,9 @@ static void cb_http_task_core_updater_get_list(
216216 retro_task_t * task , void * task_data ,
217217 void * user_data , const char * err )
218218{
219- file_transfer_t * transf = (file_transfer_t * )user_data ;
220- http_transfer_data_t * data = (http_transfer_data_t * )task_data ;
221- bool success = data && string_is_empty (err );
219+ file_transfer_t * transf = (file_transfer_t * )user_data ;
220+ http_transfer_data_t * data = (http_transfer_data_t * )task_data ;
221+ bool ret = data && string_is_empty (err );
222222
223223 if (transf )
224224 {
@@ -229,12 +229,12 @@ static void cb_http_task_core_updater_get_list(
229229
230230 list_handle -> http_data = data ;
231231 list_handle -> http_task_complete = true;
232- list_handle -> http_task_success = success ;
232+ list_handle -> http_task_success = ret ;
233233 }
234234 }
235235
236236 /* Log any error messages */
237- if (!success )
237+ if (!ret )
238238 RARCH_ERR ("[Core Updater] Download of core list \"%s\" failed: %s.\n" ,
239239 (transf ? transf -> path : "unknown" ),
240240 (err ? err : "unknown" ));
@@ -1947,7 +1947,7 @@ static void task_play_feature_delivery_switch_cores_handler(
19471947 * core list' error */
19481948 struct string_list * available_cores =
19491949 play_feature_delivery_available_cores ();
1950- bool success = false;
1950+ bool ret = false;
19511951
19521952 if (!available_cores )
19531953 {
@@ -1957,7 +1957,7 @@ static void task_play_feature_delivery_switch_cores_handler(
19571957 }
19581958
19591959 /* Populate core updater list */
1960- success = core_updater_list_parse_pfd_data (
1960+ ret = core_updater_list_parse_pfd_data (
19611961 pfd_switch_cores_handle -> core_list ,
19621962 pfd_switch_cores_handle -> path_dir_libretro ,
19631963 pfd_switch_cores_handle -> path_libretro_info ,
@@ -1966,7 +1966,7 @@ static void task_play_feature_delivery_switch_cores_handler(
19661966 string_list_free (available_cores );
19671967
19681968 /* Cache list size */
1969- if (success )
1969+ if (ret )
19701970 pfd_switch_cores_handle -> list_size =
19711971 core_updater_list_size (pfd_switch_cores_handle -> core_list );
19721972
0 commit comments