diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-04-07 20:54:50 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-04-07 20:54:50 (GMT) |
commit | 9ef9e11dc504ad94b39f511fd84b79a33819248f (patch) | |
tree | a93a33c2449aab0a5ec329b3fb7680a95fc53d23 | |
parent | c1fb612bad85ab74bdff9778deb9bea59ccf202e (diff) |
Cmd-line parameter cosmetics
git-svn-id: http://svn.clifford.at/openscad/trunk@515 b57f626f-c46c-0410-a088-ec61d464b74c
-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); } |