Revision: 54964
          http://brlcad.svn.sourceforge.net/brlcad/?rev=54964&view=rev
Author:   brlcad
Date:     2013-03-29 05:53:19 +0000 (Fri, 29 Mar 2013)
Log Message:
-----------
fastf_t arrays need a little more const persuasion

Modified Paths:
--------------
    brlcad/trunk/src/libged/tables.c

Modified: brlcad/trunk/src/libged/tables.c
===================================================================
--- brlcad/trunk/src/libged/tables.c    2013-03-29 05:51:34 UTC (rev 54963)
+++ brlcad/trunk/src/libged/tables.c    2013-03-29 05:53:19 UTC (rev 54964)
@@ -228,7 +228,8 @@
                    fprintf(tabptr, "   %c [%d] ", op, nsoltemp);
                }
            } else {
-               nsoltemp = tables_sol_number((const matp_t)old_mat, 
tree_list[i].tl_tree->tr_l.tl_name, &old, numsol);
+               const matp_t mat = (const matp_t)old_mat;
+               nsoltemp = tables_sol_number(mat, 
tree_list[i].tl_tree->tr_l.tl_name, &old, numsol);
                fprintf(tabptr, "   %c [%d] ", op, nsoltemp);
                continue;
            }

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


------------------------------------------------------------------------------
Own the Future-Intel(R) Level Up Game Demo Contest 2013
Rise to greatness in Intel's independent game demo contest. Compete 
for recognition, cash, and the chance to get your game on Steam. 
$5K grand prize plus 10 genre and skill prizes. Submit your demo 
by 6/6/13. http://altfarm.mediaplex.com/ad/ck/12124-176961-30367-2
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to