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.
This commit is contained in:
pstef 2025-03-19 23:01:07 +00:00
parent 29639b98b3
commit c978717b61
1 changed files with 1 additions and 1 deletions

View File

@ -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;