From 1f69db1bdbee59731da112ffe3281bd6b0ea27ff Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Mon, 17 Jul 2017 19:26:03 +0100 Subject: [PATCH] fix build with r47. Closes #119 --- source/filesys/fsscript.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/filesys/fsscript.c b/source/filesys/fsscript.c index ac1bd4e..7abbcc2 100644 --- a/source/filesys/fsscript.c +++ b/source/filesys/fsscript.c @@ -75,7 +75,7 @@ Gm9ScriptCmd cmd_list[] = { { CMD_ID_POWEROFF, "poweroff", 0, 0 } }; -inline bool strntohex(const char* str, u8* hex, u32 len) { +static inline bool strntohex(const char* str, u8* hex, u32 len) { if (!len) { len = strlen(str); if (len%1) return false;