Revision: 77983
          http://sourceforge.net/p/brlcad/code/77983
Author:   starseeker
Date:     2020-12-17 17:31:39 +0000 (Thu, 17 Dec 2020)
Log Message:
-----------
Older clang on OSX doesn't like these initializers

Modified Paths:
--------------
    brlcad/trunk/bench/pixcmp.c

Modified: brlcad/trunk/bench/pixcmp.c
===================================================================
--- brlcad/trunk/bench/pixcmp.c 2020-12-17 17:24:17 UTC (rev 77982)
+++ brlcad/trunk/bench/pixcmp.c 2020-12-17 17:31:39 UTC (rev 77983)
@@ -201,8 +201,8 @@
 
     FILE *f1 = NULL;
     FILE *f2 = NULL;
-    struct stat sf1 = {0};
-    struct stat sf2 = {0};
+    struct stat sf1;
+    struct stat sf2;
 
     size_t matching = 0;
     size_t off1 = 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