From 155971914073bedfa585a0be4d14a40bd23e3b8f Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 20 Apr 2024 23:13:11 +0200 Subject: MHR-9: Driver toolkit, initial commit. Signed-off-by: Amlal El Mahrouss --- Public/Developer/SystemLib/Sources/App.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Public/Developer/SystemLib') diff --git a/Public/Developer/SystemLib/Sources/App.c b/Public/Developer/SystemLib/Sources/App.c index 9d390795..36e53c7e 100644 --- a/Public/Developer/SystemLib/Sources/App.c +++ b/Public/Developer/SystemLib/Sources/App.c @@ -11,7 +11,7 @@ ApplicationRef kSharedApplication = NullPtr; /// @brief Gets the app arguments count. /// @param void no arguments. -/// @return +/// @return The number of arguments given to the application. CA_EXTERN_C SizeType RtGetAppArgumentsCount(VoidType) { CA_MUST_PASS(kSharedApplication); @@ -23,7 +23,7 @@ CA_EXTERN_C SizeType RtGetAppArgumentsCount(VoidType) { /// @return CA_EXTERN_C CharacterTypeUTF8** RtGetAppArgumentsPtr(VoidType) { CA_MUST_PASS(kSharedApplication); - + return (CharacterTypeUTF8**)kSharedApplication->Invoke(kSharedApplication, kCallGetArgsPtr); } -- cgit v1.2.3