commandline: make mytoupper static

This commit is contained in:
riccardom 2012-03-17 19:40:16 +00:00
parent 6e86aa288a
commit a5ba9829c5
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{