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:
parent
29639b98b3
commit
c978717b61
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue