make second param of driParseConfigFiles() const
authorBrian Paul <brian.paul@tungstengraphics.com>
Sun, 18 Jan 2004 17:18:43 +0000 (17:18 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Sun, 18 Jan 2004 17:18:43 +0000 (17:18 +0000)
src/mesa/drivers/dri/common/xmlconfig.c
src/mesa/drivers/dri/common/xmlconfig.h

index f45ab06ac414eb8ffe2253e9df83f3dc2fd5207a..f5e07de4ede4989a1aba95d4f1f064e8eedfe4a1 100644 (file)
@@ -837,7 +837,7 @@ static void optConfEndElem (void *userData, const XML_Char *name) {
 }
 
 /** \brief Initialize an option cache based on info */
-static void initOptionCache (driOptionCache *cache, driOptionCache *info) {
+static void initOptionCache (driOptionCache *cache, const driOptionCache *info) {
     cache->info = info->info;
     cache->tableSize = info->tableSize;
     cache->values = MALLOC ((1<<info->tableSize) * sizeof (driOptionValue));
@@ -888,7 +888,7 @@ static void parseOneConfigFile (XML_Parser p) {
 #undef BUF_SIZE
 }
 
-void driParseConfigFiles (driOptionCache *cache, driOptionCache *info,
+void driParseConfigFiles (driOptionCache *cache, const driOptionCache *info,
                          GLint screenNum, const char *driverName) {
     char *filenames[2] = {"/etc/drirc", NULL};
     char *home;
index b636349b1f4cfe6e85141ae64c8a0b9a81ab1c84..c363af764fe625ba85f87d323aa996aba05bcd2e 100644 (file)
@@ -99,7 +99,7 @@ void driParseOptionInfo (driOptionCache *info,
  *
  * To be called in <driver>CreateContext. screenNum and driverName select
  * device sections. */
-void driParseConfigFiles (driOptionCache *cache, driOptionCache *info,
+void driParseConfigFiles (driOptionCache *cache, const driOptionCache *info,
                          GLint screenNum, const char *driverName);
 /** \brief Destroy option info
  *