From 0fe166c896d2b7d7214e0c9c4add53e47d2ace88 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Tue, 24 Jun 2008 14:24:46 +0000 Subject: [PATCH] Fix a gcc 4.3 style warning --- source/core/getopt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/getopt.cpp b/source/core/getopt.cpp index 67c4d41..e4f00ff 100644 --- a/source/core/getopt.cpp +++ b/source/core/getopt.cpp @@ -150,7 +150,7 @@ unsigned GetOpt::process_long(const char *const *argp) // See if the argument contains an = unsigned equals=0; - for(; arg[equals] && arg[equals]!='='; ++equals); + for(; arg[equals] && arg[equals]!='='; ++equals) ; OptBase &opt=get_option(string(arg, equals)); -- 2.43.0