Skip to content

Commit c978717

Browse files
committed
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.
1 parent 29639b9 commit c978717

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ctr/exec-3dsx/exec_cia.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ static int isCiaInstalled(u64 titleId, u16 version)
6363
return 0;
6464
}
6565

66-
static int deleteCia(u64 TitleId)
66+
static void deleteCia(u64 TitleId)
6767
{
6868
u64 currTitleId = 0;
6969

0 commit comments

Comments
 (0)