summaryrefslogtreecommitdiff
path: root/quackleio
diff options
context:
space:
mode:
Diffstat (limited to 'quackleio')
-rw-r--r--quackleio/froggetopt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/quackleio/froggetopt.cpp b/quackleio/froggetopt.cpp
index 43f1d6b..8678c96 100644
--- a/quackleio/froggetopt.cpp
+++ b/quackleio/froggetopt.cpp
@@ -263,7 +263,7 @@ bool GetOpt::parse( bool untilFirstSwitchOnly )
}
t = LongOpt;
// split key=value style arguments
- int equal = a.indexOf( '=' );
+ qsizetype equal = a.indexOf( '=' );
if ( equal >= 0 ) {
stack.push( a.mid( equal + 1 ) );
currArg--;