summaryrefslogtreecommitdiff
path: root/src/code/irqmgr.c
diff options
context:
space:
mode:
authorAnghelo Carvajal <angheloalf95@gmail.com>2023-08-10 12:36:28 -0400
committerGitHub <noreply@github.com>2023-08-10 12:36:28 -0400
commit380681908d5dee98c2f335f266738233de632c93 (patch)
tree5379399a2037cda599ac60df37a64baee40bb835 /src/code/irqmgr.c
parent0d54e2ae4c473be47dba69ef6d560c49cc86d053 (diff)
Add warnings checker to Jenkins (#40)
* Bring over MM's warnings_count system * Generate base warnings * Hook warnings to Jenkins * Fix setup warnings * splat flag * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "20922ca" upstream: origin: "git@github.com:ethteck/splat.git" branch: "master" commit: "20922ca" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * update fixed stuff * fix warnings * Fix "F3DEX_GBI_2 redefined" warning * git subrepo pull --force lib/ultralib subrepo: subdir: "lib/ultralib" merged: "d163fa4" upstream: origin: "git@github.com:decompals/ultralib.git" branch: "main" commit: "d163fa4" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * update warning count for lib * restore custom gbi.h
Diffstat (limited to 'src/code/irqmgr.c')
-rw-r--r--src/code/irqmgr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/irqmgr.c b/src/code/irqmgr.c
index 82cd38d..a2faa5d 100644
--- a/src/code/irqmgr.c
+++ b/src/code/irqmgr.c
@@ -1,9 +1,9 @@
-
#include "irqmgr.h"
#include "libu64/stackcheck.h"
#include "m_thread.h"
#include "PR/os_internal.h"
#include "macros.h"
+#include "attributes.h"
Irqmgr irqmgr_class;
Irqmgr* this;
@@ -130,7 +130,7 @@ void irqmgr_HandleRetrace(void) {
irqmgr_SendMesgToClients(&this->msgRetrace);
}
-void irqmgr_Main(void* arg) {
+void irqmgr_Main(void* arg UNUSED) {
OSMesg msg = (OSMesg)0;
u8 exit = 0;