diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-05-26 14:35:22 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-05-26 14:35:22 +0000 |
commit | 1d02c374c8877d430f4ab35a790fc02f02974704 (patch) | |
tree | 8d03d2226cc9322262308eba5eb0754d58a71a98 /src/tools | |
parent | b1522d279d22725a731cb8db93ec2d077028374c (diff) | |
download | libbu++-1d02c374c8877d430f4ab35a790fc02f02974704.tar.gz libbu++-1d02c374c8877d430f4ab35a790fc02f02974704.tar.bz2 libbu++-1d02c374c8877d430f4ab35a790fc02f02974704.tar.xz libbu++-1d02c374c8877d430f4ab35a790fc02f02974704.zip |
Fixed most of the compilation warnings, and a valgrind warning in the fstring's
remove function. memcpy can't do overlapping memory, changed it to use memmove.
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/mkunit.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tools/mkunit.cpp b/src/tools/mkunit.cpp index 0454013..12ce65f 100644 --- a/src/tools/mkunit.cpp +++ b/src/tools/mkunit.cpp | |||
@@ -540,6 +540,11 @@ private: | |||
540 | 540 | ||
541 | int main( int argc, char *argv[] ) | 541 | int main( int argc, char *argv[] ) |
542 | { | 542 | { |
543 | if( argc < 3 ) | ||
544 | { | ||
545 | sio << "Too few parameters." << sio.nl; | ||
546 | return 0; | ||
547 | } | ||
543 | Parser p( argv[1] ); | 548 | Parser p( argv[1] ); |
544 | 549 | ||
545 | p.firstPass(); | 550 | p.firstPass(); |