Revision: 55287
          http://sourceforge.net/p/brlcad/code/55287
Author:   carlmoore
Date:     2013-05-01 20:50:21 +0000 (Wed, 01 May 2013)
Log Message:
-----------
fix type warnings

Modified Paths:
--------------
    brlcad/trunk/src/liboptical/sh_prj.c

Modified: brlcad/trunk/src/liboptical/sh_prj.c
===================================================================
--- brlcad/trunk/src/liboptical/sh_prj.c        2013-05-01 20:44:14 UTC (rev 
55286)
+++ brlcad/trunk/src/liboptical/sh_prj.c        2013-05-01 20:50:21 UTC (rev 
55287)
@@ -181,9 +181,9 @@
            return -1;                          /* FAIL */
 
        if (image->i_data->buflen < size) {
-           bu_log("\nWARNING: %V needs %d bytes, file only has %d\n", 
&image->i_name, size, image->i_data->buflen);
+           bu_log("\nWARNING: %V needs %lu bytes, file only has %d\n", 
&image->i_name, size, image->i_data->buflen);
        } else if (image->i_data->buflen > size) {
-           bu_log("\nWARNING: Image file size is larger than specified image 
size\n\tInput File: %zu pixels\n\tSpecified Image Size: %d 
pixels\n...continuing to load using image subsection...", 
image->i_data->buflen, size);
+           bu_log("\nWARNING: Image file size is larger than specified image 
size\n\tInput File: %zu pixels\n\tSpecified Image Size: %lu 
pixels\n...continuing to load using image subsection...", 
image->i_data->buflen, size);
        }
 
        image->i_img = (unsigned char *) image->i_data->buf;

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

Reply via email to