Revision: 55164
          http://brlcad.svn.sourceforge.net/brlcad/?rev=55164&view=rev
Author:   carlmoore
Date:     2013-04-16 16:09:56 +0000 (Tue, 16 Apr 2013)
Log Message:
-----------
fix warning about expecting long unsigned int

Modified Paths:
--------------
    brlcad/trunk/src/librt/db_io.c

Modified: brlcad/trunk/src/librt/db_io.c
===================================================================
--- brlcad/trunk/src/librt/db_io.c      2013-04-15 21:20:36 UTC (rev 55163)
+++ brlcad/trunk/src/librt/db_io.c      2013-04-16 16:09:56 UTC (rev 55164)
@@ -143,7 +143,7 @@
        return -1;
     }
     if (offset < 0 || len+(size_t)offset > dp->d_len) {
-       bu_log("db_get(%s):  xfer %d..%x exceeds 0..%zu\n",
+       bu_log("db_get(%s):  xfer %d..%lu exceeds 0..%zu\n",
               dp->d_namep, offset, offset+len, dp->d_len);
        where->u_id = '\0';     /* undefined id */
        return -1;
@@ -217,7 +217,7 @@
                                    dp->d_namep, dbip, dp, where, offset, len);
 
     if ((len+(size_t)offset) > dp->d_len) {
-       bu_log("db_put(%s):  xfer %d..%x exceeds 0..%zu\n",
+       bu_log("db_put(%s):  xfer %d..%lu exceeds 0..%zu\n",
               dp->d_namep, offset, offset+len, dp->d_len);
        return -1;
     }

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to