Style nit

This commit is contained in:
twinaphex 2017-12-14 19:09:29 +01:00
parent 26e191f642
commit 842ac40c6e

View File

@ -438,6 +438,8 @@ int retro_vfs_file_delete_impl(const char *path)
const char *retro_vfs_file_get_path_impl(libretro_vfs_implementation_file *stream)
{
if (!stream) abort(); /* should never happen, do something noisy so caller can be fixed */
/* should never happen, do something noisy so caller can be fixed */
if (!stream)
abort();
return stream->orig_path;
}