Skip to content

Commit 929c783

Browse files
committed
Fix nonstandard C89 in libretro-common/vfs/vfs_implementation.c
1 parent 4a2d40b commit 929c783

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libretro-common/vfs/vfs_implementation.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1446,11 +1446,11 @@ bool retro_vfs_dirent_is_dir_impl(libretro_vfs_implementation_dir *rdir)
14461446

14471447
int retro_vfs_closedir_impl(libretro_vfs_implementation_dir *rdir)
14481448
{
1449+
int ret = 0;
1450+
14491451
if (!rdir)
14501452
return -1;
14511453

1452-
int ret = 0;
1453-
14541454
#if defined(ANDROID) && defined(HAVE_SAF)
14551455
if (rdir->saf_directory != NULL)
14561456
ret = retro_vfs_closedir_saf(rdir->saf_directory);

0 commit comments

Comments
 (0)