From 3cf003ca454c5c1e315e9ad75f57d06e1af0c380 Mon Sep 17 00:00:00 2001 From: p-sam Date: Sat, 4 Aug 2018 15:29:30 +0000 Subject: [PATCH] add a return at the end of each file --- nx/include/switch/services/hid_dbg.h | 2 +- nx/include/switch/services/hid_sys.h | 2 +- nx/source/services/hid_dbg.c | 2 +- nx/source/services/hid_sys.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nx/include/switch/services/hid_dbg.h b/nx/include/switch/services/hid_dbg.h index fd97f93f..a64beccf 100644 --- a/nx/include/switch/services/hid_dbg.h +++ b/nx/include/switch/services/hid_dbg.h @@ -14,4 +14,4 @@ Result hidDbgInitialize(void); void hidDbgExit(void); /// Enables the default behavior of the HOME button (going back to the main menu) if it was disabled -Result hidDbgDeactivateHomeButton(); \ No newline at end of file +Result hidDbgDeactivateHomeButton(); diff --git a/nx/include/switch/services/hid_sys.h b/nx/include/switch/services/hid_sys.h index f80dd928..799243da 100644 --- a/nx/include/switch/services/hid_sys.h +++ b/nx/include/switch/services/hid_sys.h @@ -11,4 +11,4 @@ Result hidSysInitialize(void); void hidSysExit(void); /// Disables the default behavior of the HOME button (going back to the main menu) if it was enabled -Result hidSysActivateHomeButton(); \ No newline at end of file +Result hidSysActivateHomeButton(); diff --git a/nx/source/services/hid_dbg.c b/nx/source/services/hid_dbg.c index d1349747..381f5155 100644 --- a/nx/source/services/hid_dbg.c +++ b/nx/source/services/hid_dbg.c @@ -74,4 +74,4 @@ Result hidDbgDeactivateHomeButton() { } return rc; -} \ No newline at end of file +} diff --git a/nx/source/services/hid_sys.c b/nx/source/services/hid_sys.c index 30244871..2e7e81d9 100644 --- a/nx/source/services/hid_sys.c +++ b/nx/source/services/hid_sys.c @@ -67,4 +67,4 @@ Result hidSysActivateHomeButton() { } return rc; -} \ No newline at end of file +}