diff --git a/nx/source/services/capmtp.c b/nx/source/services/capmtp.c index 2f1e1809..b9f47ecb 100644 --- a/nx/source/services/capmtp.c +++ b/nx/source/services/capmtp.c @@ -74,10 +74,6 @@ static Result _capmtpOpenSession(Service *srv) { ); } -static Result _capmtpClose(void) { - return _capmtpNoIO(1); -} - static Result _capmtpOpen(u32 max_folders, u32 max_img, u32 max_vid, const uint_least16_t *other_name) { size_t len=0; const uint_least16_t *tmp =other_name; @@ -97,6 +93,10 @@ static Result _capmtpOpen(u32 max_folders, u32 max_img, u32 max_vid, const uint_ ); } +static Result _capmtpClose(void) { + return _capmtpNoIO(1); +} + Result capmtpStartCommandHandler(void) { return _capmtpNoIO(2); }