Navigation Menu

Skip to content

Commit

Permalink
warnings fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
dukesrg committed Feb 5, 2016
1 parent 55fd31f commit a771d12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/svc.h
Expand Up @@ -23,7 +23,7 @@ enum {
SVC_KERNEL_STATE_TITLE_COMPAT = 0
};

static inline _Noreturn svcExitThread()
static inline void __attribute__((noreturn)) svcExitThread()
{
__asm__ volatile ("svc 9\n");
__builtin_unreachable();
Expand Down
2 changes: 1 addition & 1 deletion rxmode/native_firm/source/payload/arm9/thread/thread.c
Expand Up @@ -53,7 +53,7 @@ static void memdump(wchar_t *filename, unsigned char *buf, size_t size)

#define VER_LEN 4

static patchLabel()
static void patchLabel()
{
static const char verOrig[VER_LEN] = "Ver.";
static const char verEmu[VER_LEN] = "RX-E";
Expand Down

0 comments on commit a771d12

Please sign in to comment.