Revision: 58836
          http://sourceforge.net/p/brlcad/code/58836
Author:   starseeker
Date:     2013-12-05 21:40:59 +0000 (Thu, 05 Dec 2013)
Log Message:
-----------
Another bu_calloc char cast

Modified Paths:
--------------
    brlcad/trunk/src/libbu/getcwd.c

Modified: brlcad/trunk/src/libbu/getcwd.c
===================================================================
--- brlcad/trunk/src/libbu/getcwd.c     2013-12-05 21:35:18 UTC (rev 58835)
+++ brlcad/trunk/src/libbu/getcwd.c     2013-12-05 21:40:59 UTC (rev 58836)
@@ -47,7 +47,7 @@
     /* NULL buf means allocate */
     if (!buf) {
        sz = MAXPATHLEN;
-       buf = bu_calloc(1, sz, "alloc bu_getcwd");
+       buf = (char *)bu_calloc(1, sz, "alloc bu_getcwd");
     }
 
     /* FIRST: try getcwd */

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


------------------------------------------------------------------------------
Sponsored by Intel(R) XDK 
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to