diff options
author | Mike Buland <eichlan@xagasoft.com> | 2020-03-24 11:05:40 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2020-03-24 11:05:40 -0700 |
commit | de026982f5273807669c13fab9c79dffaeb8c253 (patch) | |
tree | 06687fba2a8eb3327cfc1a614b75e95ca16e8b52 /src/stable/optparser.cpp | |
parent | 59be1eca587eb3da14c2e924a186396f321f5a58 (diff) | |
parent | 9db480db19a6929d958edd143d22fbf249afcb6f (diff) | |
download | libbu++-de026982f5273807669c13fab9c79dffaeb8c253.tar.gz libbu++-de026982f5273807669c13fab9c79dffaeb8c253.tar.bz2 libbu++-de026982f5273807669c13fab9c79dffaeb8c253.tar.xz libbu++-de026982f5273807669c13fab9c79dffaeb8c253.zip |
Merge branch 'master' into unicode
Diffstat (limited to 'src/stable/optparser.cpp')
-rw-r--r-- | src/stable/optparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stable/optparser.cpp b/src/stable/optparser.cpp index 0f9b2b1..c0f5732 100644 --- a/src/stable/optparser.cpp +++ b/src/stable/optparser.cpp | |||
@@ -77,7 +77,7 @@ void Bu::OptParser::parse( int argc, char **argv ) | |||
77 | { | 77 | { |
78 | pOpt->pProxy->setValueFromStr( sExtraParam ); | 78 | pOpt->pProxy->setValueFromStr( sExtraParam ); |
79 | } | 79 | } |
80 | else if( argv[j+1] != '\0' ) | 80 | else if( argv[j+1] != 0 ) |
81 | { | 81 | { |
82 | pOpt->pProxy->setValueFromStr( argv[j+1] ); | 82 | pOpt->pProxy->setValueFromStr( argv[j+1] ); |
83 | j++; | 83 | j++; |