Revision: 56706
          http://sourceforge.net/p/brlcad/code/56706
Author:   carlmoore
Date:     2013-08-08 22:06:10 +0000 (Thu, 08 Aug 2013)
Log Message:
-----------
remove unneeded braces in g-acad.c, and in g-euclid.c make changes to the usage 
statement and implement h?

Modified Paths:
--------------
    brlcad/trunk/src/conv/euclid/g-euclid.c
    brlcad/trunk/src/conv/g-acad.c

Modified: brlcad/trunk/src/conv/euclid/g-euclid.c
===================================================================
--- brlcad/trunk/src/conv/euclid/g-euclid.c     2013-08-08 21:36:13 UTC (rev 
56705)
+++ brlcad/trunk/src/conv/euclid/g-euclid.c     2013-08-08 22:06:10 UTC (rev 
56706)
@@ -40,10 +40,15 @@
 #include "rtgeom.h"
 #include "raytrace.h"
 
-
 extern union tree *do_region_end(struct db_tree_state *tsp, const struct 
db_full_path *pathp, union tree *curtree, genptr_t client_data);
 
-static char    usage[] = "Usage: %s [-v] [-xX lvl] [-a abs_tol] [-r rel_tol] 
[-n norm_tol] [-o out_file] brlcad_db.g object(s)\n";
+static void
+usage(const char *argv0)
+{
+    bu_log("Usage: %s [-v] [-xX lvl] [-a abs_tol] [-r rel_tol] [-n norm_tol] 
[-P #_of_CPUs] [-o out_file] brlcad_db.g object(s)\n",
+       argv0);
+    bu_exit(1, NULL);
+}
 
 static int     NMG_debug=0;            /* saved arg of -X, for longjmp 
handling */
 static int     verbose;
@@ -103,9 +108,7 @@
 
     ptr = strchr(buffer, '.');
     if ((size_t)(ptr - buffer) > length)
-    {
        bu_exit(1, "ERROR: Value (%f) too large for format length (%zu)\n", f, 
length);
-    }
 
     for (i=0; i<length; i++)
        fputc(buffer[i], out);
@@ -519,7 +522,7 @@
     BU_LIST_INIT(&RTG.rtg_vlfree);     /* for vlist macros */
 
     /* Get command line arguments. */
-    while ((c = bu_getopt(argc, argv, "a:n:o:r:s:vx:P:X:")) != -1) {
+    while ((c = bu_getopt(argc, argv, "a:n:o:r:s:vx:P:X:h?")) != -1) {
        switch (c) {
            case 'a':           /* Absolute tolerance. */
                ttol.abs = atof(bu_optarg);
@@ -550,14 +553,12 @@
                NMG_debug = RTG.NMG_debug;
                break;
            default:
-               bu_exit(1, usage, argv[0]);
-               break;
+               usage(argv[0]);
        }
     }
 
-    if (bu_optind+1 >= argc) {
-       bu_exit(1, usage, argv[0]);
-    }
+    if (bu_optind+1 >= argc)
+       usage(argv[0]);
 
     /* Open BRL-CAD database */
     if ((dbip = db_open(argv[bu_optind], DB_OPEN_READONLY)) == DBI_NULL)

Modified: brlcad/trunk/src/conv/g-acad.c
===================================================================
--- brlcad/trunk/src/conv/g-acad.c      2013-08-08 21:36:13 UTC (rev 56705)
+++ brlcad/trunk/src/conv/g-acad.c      2013-08-08 22:06:10 UTC (rev 56706)
@@ -559,9 +559,8 @@
        }
     }
 
-    if (bu_optind+1 >= argc) {
+    if (bu_optind+1 >= argc)
        usage(argv[0]);
-    }
 
     if (!output_file) {
        fp = stdout;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with <2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to