]> git.sur5r.net Git - cc65/commitdiff
replaced char* by const char* as it is in prototype
authorizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 8 Mar 2002 16:44:57 +0000 (16:44 +0000)
committerizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 8 Mar 2002 16:44:57 +0000 (16:44 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1176 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/geos/common/perror.c

index 6d64b25a2f68adea9abc42d7575e323aa8ea6056..4e24023ee6c24faf719bd429caf3bb27fbc4d929 100644 (file)
@@ -12,6 +12,6 @@
 void perror(const char* msg)
 {
 
-    DlgBoxOk((char*)msg,strerror(errno));
+    DlgBoxOk(msg,strerror(errno));
 
 }