From b88b10b8227c6e8537922ba22a204d152e4e0186 Mon Sep 17 00:00:00 2001 From: izydorst Date: Fri, 8 Mar 2002 16:44:57 +0000 Subject: [PATCH] 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 --- libsrc/geos/common/perror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); }