Revision: 55186
          http://brlcad.svn.sourceforge.net/brlcad/?rev=55186&view=rev
Author:   carlmoore
Date:     2013-04-18 21:17:14 +0000 (Thu, 18 Apr 2013)
Log Message:
-----------
implement the utility name in 2 error messages

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

Modified: brlcad/trunk/src/conv/cy-g.c
===================================================================
--- brlcad/trunk/src/conv/cy-g.c        2013-04-18 20:59:42 UTC (rev 55185)
+++ brlcad/trunk/src/conv/cy-g.c        2013-04-18 21:17:14 UTC (rev 55186)
@@ -110,12 +110,12 @@
     }
 
     if ((infp=fopen(argv[1], "rb")) == NULL) {
-       bu_log("Cannot open input file (%s)\n", argv[1]);
+       bu_log("%s: cannot open input file (%s)\n", argv[0] , argv[1]);
        bu_exit(1, "%s", usage);
     }
 
     if ((outfp = wdb_fopen(argv[2])) == NULL) {
-       bu_log("Cannot open output file (%s)\n", argv[2]);
+       bu_log("%s: cannot open output file (%s)\n", argv[0] , argv[2]);
        bu_exit(1, "%s", usage);
     }
 

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


------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to