From 0ff790f032442a92e62ee724746dd6f94f40b1c3 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Sat, 21 Apr 2018 01:57:28 -0400 Subject: [PATCH] Use R_FAILED for the romfsInit rc check. --- fs/romfs/source/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/romfs/source/main.c b/fs/romfs/source/main.c index b881995..a18ab11 100644 --- a/fs/romfs/source/main.c +++ b/fs/romfs/source/main.c @@ -34,7 +34,7 @@ int main(int argc, char **argv) consoleInit(NULL); Result rc = romfsInit(); - if (rc) + if (R_FAILED(rc)) printf("romfsInit: %08X\n", rc); else {