1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Description: Fix help return code in example file
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2022-05-03
--- a/src/test/src/main.cpp
+++ b/src/test/src/main.cpp
@@ -651,7 +651,7 @@
std::cout << "\t Encode binary: test_o3dgc -c -i fileName.obj -st binary"<< std::endl;
std::cout << "\t Encode ascii: test_o3dgc -c -i fileName.obj -st ascii "<< std::endl;
std::cout << "\t Decode: test_o3dgc -d -i fileName.s3d"<< std::endl;
- return -1;
+ return 0;
}
std::cout << "----------------------------------------" << std::endl;
|