From: izydorst Date: Fri, 8 Mar 2002 16:44:57 +0000 (+0000) Subject: replaced char* by const char* as it is in prototype X-Git-Tag: V2.12.0~2438 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b88b10b8227c6e8537922ba22a204d152e4e0186;p=cc65 replaced char* by const char* as it is in prototype git-svn-id: svn://svn.cc65.org/cc65/trunk@1176 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/geos/common/perror.c b/libsrc/geos/common/perror.c index 6d64b25a2..4e24023ee 100644 --- a/libsrc/geos/common/perror.c +++ b/libsrc/geos/common/perror.c @@ -12,6 +12,6 @@ void perror(const char* msg) { - DlgBoxOk((char*)msg,strerror(errno)); + DlgBoxOk(msg,strerror(errno)); }