diff options
-rw-r--r-- | doc/TODO.txt | 2 | ||||
-rw-r--r-- | src/openscad.cc | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/doc/TODO.txt b/doc/TODO.txt index c374cb8..dbf40c7 100644 --- a/doc/TODO.txt +++ b/doc/TODO.txt @@ -166,8 +166,6 @@ o Use a logging framework to get debugging/info output more under control? MISC ---- o Streamline the cmd-line interface a bit - - add -h/-? - - -v/--version - Implicit output file format o Mac OS X: - universal binary -> fix cgal and opencsg diff --git a/src/openscad.cc b/src/openscad.cc index 27935ac..a8017e6 100644 --- a/src/openscad.cc +++ b/src/openscad.cc @@ -60,7 +60,7 @@ static void help(const char *progname) #define TOSTRING(x) STRINGIFY(x) static void version() { - printf("openscad version %s\n",TOSTRING(OPENSCAD_VERSION)); + printf("OpenSCAD version %s\n", TOSTRING(OPENSCAD_VERSION)); exit(1); } |