Revision: 75717
          http://sourceforge.net/p/brlcad/code/75717
Author:   starseeker
Date:     2020-05-07 01:22:10 +0000 (Thu, 07 May 2020)
Log Message:
-----------
OpenBSD is using long long here - go with the bigger value type generally

Modified Paths:
--------------
    brlcad/trunk/src/external/Unigraphics/ug-g.c

Modified: brlcad/trunk/src/external/Unigraphics/ug-g.c
===================================================================
--- brlcad/trunk/src/external/Unigraphics/ug-g.c        2020-05-07 01:19:31 UTC 
(rev 75716)
+++ brlcad/trunk/src/external/Unigraphics/ug-g.c        2020-05-07 01:22:10 UTC 
(rev 75717)
@@ -5497,7 +5497,7 @@
     bu_log( "\t\t%d of the facetized parts were BREP models\n", parts_brep );
 
     elapsed_time = time( &end_time ) - start_time;
-    bu_log( "Elapsed time: %02ld:%02ld:%02ld\n", elapsed_time/3600, 
(elapsed_time%3600)/60, (elapsed_time%60) );
+    bu_log( "Elapsed time: %02lld:%02lld:%02lld\n", (long 
long)elapsed_time/3600, (long long)(elapsed_time%3600)/60, (long 
long)(elapsed_time%60) );
 
     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