Revision: 55268
http://sourceforge.net/p/brlcad/code/55268
Author: carlmoore
Date: 2013-04-30 13:52:04 +0000 (Tue, 30 Apr 2013)
Log Message:
-----------
fix warning about 'long int' format
Modified Paths:
--------------
brlcad/trunk/src/librt/primitives/nmg/nmg_rt_segs.c
Modified: brlcad/trunk/src/librt/primitives/nmg/nmg_rt_segs.c
===================================================================
--- brlcad/trunk/src/librt/primitives/nmg/nmg_rt_segs.c 2013-04-29 20:43:13 UTC
(rev 55267)
+++ brlcad/trunk/src/librt/primitives/nmg/nmg_rt_segs.c 2013-04-30 13:52:04 UTC
(rev 55268)
@@ -1012,13 +1012,13 @@
b = &a_tbl->buffer[a_tbl->end];
l_p = &a_tbl->buffer[0];
for (; l_p < b; l_p ++)
- bu_log("\t0x%08x %s\n", **l_p, bu_identify_magic(**l_p));
+ bu_log("\t0x%ld %s\n", **l_p, bu_identify_magic(**l_p));
bu_log("topo table NEXT\n");
b = &next_tbl->buffer[next_tbl->end];
l_p = &next_tbl->buffer[0];
for (; l_p < b; l_p ++)
- bu_log("\t0x%08x %s\n", **l_p, bu_identify_magic(**l_p));
+ bu_log("\t0x%ld %s\n", **l_p, bu_identify_magic(**l_p));
bu_log("<---Unable to fix state transition\n");
pl_ray(rd);
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits