]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Sun, 19 Feb 2012 22:03:21 +0000 (22:03 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Sun, 19 Feb 2012 22:03:21 +0000 (22:03 +0000)
MagickCore/configure.c
MagickCore/locale.c

index fb687fbfa6386f328233b63bf5ca6285f18c0820..cf4179696adee0dfcbe40f224999753856f78a89 100644 (file)
@@ -584,7 +584,7 @@ MagickExport LinkedListInfo *GetConfigureOptions(const char *filename,
         {
           xml=AcquireStringInfo(0);
           SetStringInfoLength(xml,strlen(blob)+1);
-          SetStringInfoDatum(xml,blob);
+          SetStringInfoDatum(xml,(unsigned char *) blob);
           SetStringInfoPath(xml,filename);
           (void) AppendValueToLinkedList(options,xml);
         }
index 93154832b407effc4913135189062b28ac949752..a84a5d43e34900c7a83bee7ea7777b961faa35d8 100644 (file)
@@ -747,7 +747,7 @@ MagickExport LinkedListInfo *GetLocaleOptions(const char *filename,
       {
         xml=AcquireStringInfo(0);
         SetStringInfoLength(xml,strlen(blob)+1);
-        SetStringInfoDatum(xml,blob);
+        SetStringInfoDatum(xml,(unsigned char *) blob);
         SetStringInfoPath(xml,filename);
         (void) AppendValueToLinkedList(messages,xml);
       }