diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-08-06 19:43:57 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-08-06 19:43:57 +0000 |
commit | b7a415ec0e358967fc39c046fb72f29e227e7104 (patch) | |
tree | 3197c3b4f57f02d10649b09ef821982cb00a1bb6 /src/paramproc.cpp | |
parent | 7ef611a2b62c760065705fa8b66b5ff1edbb8eee (diff) | |
download | libbu++-b7a415ec0e358967fc39c046fb72f29e227e7104.tar.gz libbu++-b7a415ec0e358967fc39c046fb72f29e227e7104.tar.bz2 libbu++-b7a415ec0e358967fc39c046fb72f29e227e7104.tar.xz libbu++-b7a415ec0e358967fc39c046fb72f29e227e7104.zip |
It builds with build again, and even the tests now. woo!
Diffstat (limited to 'src/paramproc.cpp')
-rw-r--r-- | src/paramproc.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/paramproc.cpp b/src/paramproc.cpp index 90fa9ac..5cb815c 100644 --- a/src/paramproc.cpp +++ b/src/paramproc.cpp | |||
@@ -463,7 +463,14 @@ int ParamProc::help( int argc, char *argv[] ) | |||
463 | printf(" "); | 463 | printf(" "); |
464 | if( (*i)->cChar ) | 464 | if( (*i)->cChar ) |
465 | { | 465 | { |
466 | printf("-%c, ", (*i)->cChar ); | 466 | if( (*i)->sWord.getString() ) |
467 | { | ||
468 | printf("-%c, ", (*i)->cChar ); | ||
469 | } | ||
470 | else | ||
471 | { | ||
472 | printf("-%c ", (*i)->cChar ); | ||
473 | } | ||
467 | } | 474 | } |
468 | else | 475 | else |
469 | { | 476 | { |