From c978717b61545dfe6a6d4bf1354223c863b8fd3e Mon Sep 17 00:00:00 2001 From: pstef <3462925+pstef@users.noreply.github.com> Date: Wed, 19 Mar 2025 23:01:07 +0000 Subject: [PATCH] Silence a warning about no return value from non-void function It seems the idea is to continue with installation, regardless of what happened within deleteCia, so I just change its return type to void. --- ctr/exec-3dsx/exec_cia.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctr/exec-3dsx/exec_cia.c b/ctr/exec-3dsx/exec_cia.c index 8cbf66f606..43567ef66d 100644 --- a/ctr/exec-3dsx/exec_cia.c +++ b/ctr/exec-3dsx/exec_cia.c @@ -63,7 +63,7 @@ static int isCiaInstalled(u64 titleId, u16 version) return 0; } -static int deleteCia(u64 TitleId) +static void deleteCia(u64 TitleId) { u64 currTitleId = 0;