Revision: 76530
http://sourceforge.net/p/brlcad/code/76530
Author: brlcad
Date: 2020-07-27 19:48:54 +0000 (Mon, 27 Jul 2020)
Log Message:
-----------
lowercase for sanity on case sensitive filesystems
Modified Paths:
--------------
brlcad/trunk/src/libged/human/human.c
Modified: brlcad/trunk/src/libged/human/human.c
===================================================================
--- brlcad/trunk/src/libged/human/human.c 2020-07-27 19:41:45 UTC (rev
76529)
+++ brlcad/trunk/src/libged/human/human.c 2020-07-27 19:48:54 UTC (rev
76530)
@@ -1884,7 +1884,7 @@
bu_log("Outputting text file\n");
- dump = fopen("Stats.txt", "w+");
+ dump = fopen("stats.txt", "w+");
fprintf(dump, "Name, X, Y, Z, all in millimeters\n");
@@ -2008,7 +2008,7 @@
FILE *dump;
bu_log("Verbose Text Dump\n");
- dump = fopen("Verbose.txt", "w+");
+ dump = fopen("verbose.txt", "w+");
fprintf(dump, "#All Sizes are in mm\n");
fprintf(dump, "headSize\t%f\n", dude->head.headSize);
@@ -2057,7 +2057,7 @@
bu_log("Reading Textfile for Input\n");
- input = fopen("Stats.txt", "r");
+ input = fopen("stats.txt", "r");
if (input == NULL) {
bu_log("Non-existent input file.\n");
@@ -2087,7 +2087,7 @@
bu_log("Reading textfile for all measurements\n");
- input = fopen("Verbose.txt", "r");
+ input = fopen("verbose.txt", "r");
if (input == NULL) {
bu_log("Non-existent input file\n");
} else {
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