Revision: 41844
          http://brlcad.svn.sourceforge.net/brlcad/?rev=41844&view=rev
Author:   brlcad
Date:     2010-12-30 06:47:09 +0000 (Thu, 30 Dec 2010)

Log Message:
-----------
dm_open()'s argv can be const

Modified Paths:
--------------
    brlcad/trunk/include/dm.h
    brlcad/trunk/src/libdm/dm-generic.c

Modified: brlcad/trunk/include/dm.h
===================================================================
--- brlcad/trunk/include/dm.h   2010-12-29 21:14:50 UTC (rev 41843)
+++ brlcad/trunk/include/dm.h   2010-12-30 06:47:09 UTC (rev 41844)
@@ -334,7 +334,7 @@
                    (Tcl_Interp *interp,
                     int type,
                     int argc,
-                    char *argv[]));
+                    const char *argv[]));
 DM_EXPORT BU_EXTERN(int dm_share_dlist,
                    (struct dm *dmp1,
                     struct dm *dmp2));

Modified: brlcad/trunk/src/libdm/dm-generic.c
===================================================================
--- brlcad/trunk/src/libdm/dm-generic.c 2010-12-29 21:14:50 UTC (rev 41843)
+++ brlcad/trunk/src/libdm/dm-generic.c 2010-12-30 06:47:09 UTC (rev 41844)
@@ -76,7 +76,7 @@
 
 
 struct dm *
-dm_open(Tcl_Interp *interp, int type, int argc, char **argv)
+dm_open(Tcl_Interp *interp, int type, int argc, const char *argv[])
 {
     switch (type) {
        case DM_TYPE_NULL:


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

------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to