Revision: 65269
          http://sourceforge.net/p/brlcad/code/65269
Author:   carlmoore
Date:     2015-06-11 17:51:56 +0000 (Thu, 11 Jun 2015)
Log Message:
-----------
comment off the # option; could 'bytes per pixel' be implemented someday?

Modified Paths:
--------------
    brlcad/trunk/src/util/pixrect.c

Modified: brlcad/trunk/src/util/pixrect.c
===================================================================
--- brlcad/trunk/src/util/pixrect.c     2015-06-11 17:46:09 UTC (rev 65268)
+++ brlcad/trunk/src/util/pixrect.c     2015-06-11 17:51:56 UTC (rev 65269)
@@ -52,7 +52,8 @@
 {
     int c;
 
-    while ((c = bu_getopt(argc, argv, "s:w:n:S:W:N:x:y:o:#:h?")) != -1) {
+/* "#:" was removed from the following: */
+    while ((c = bu_getopt(argc, argv, "s:w:n:S:W:N:x:y:o:h?")) != -1) {
        switch (c) {
            case 's':
                inx = iny = atoi(bu_optarg);
@@ -81,9 +82,10 @@
            case 'o':
                out_file = bu_optarg;
                break;
-           case '#' :
-               bu_log("pixrect: bytes per pixel is not supported.\n");
-               return 0;
+/*         case '#' :
+ *             bu_log("pixrect: bytes per pixel is not supported.\n");
+ *             return 0;
+ */
            default : /* '?' , 'h' */
                return 0;
        }

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


------------------------------------------------------------------------------
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to