From 95395c62e37846da4f0a9fd02e046441ae80ac3b Mon Sep 17 00:00:00 2001 From: Luis Scheurenbrand Date: Thu, 3 Dec 2020 05:15:56 +0100 Subject: [PATCH] order --- nx/source/services/capmtp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); }