From a5ba9829c51f50efe690b43da5a2280e39022f85 Mon Sep 17 00:00:00 2001 From: riccardom Date: Sat, 17 Mar 2012 19:40:16 +0000 Subject: [PATCH] commandline: make mytoupper static --- desmume/src/commandline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/commandline.cpp b/desmume/src/commandline.cpp index fad378e3a..9fe6d4bf1 100644 --- a/desmume/src/commandline.cpp +++ b/desmume/src/commandline.cpp @@ -112,7 +112,7 @@ void CommandLine::loadCommonOptions() g_option_context_add_main_entries (ctx, options, "options"); } -char mytoupper(char c) { return ::toupper(c); } +static char mytoupper(char c) { return ::toupper(c); } bool CommandLine::parse(int argc,char **argv) {