mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
4095d64e48
- Remove dependency on gcc 2.95 assuming that support for gcc 2.7.2 is dropped long time ago - Bump PORTREVISION Approved by: portmgr, MAINTAINER
12 lines
287 B
C++
12 lines
287 B
C++
--- src/parsetpl.cpp.orig Fri Aug 19 17:49:03 2005
|
|
+++ src/parsetpl.cpp Fri Aug 19 17:50:18 2005
|
|
@@ -880,7 +880,7 @@
|
|
|
|
// First - replace all \r to \n
|
|
|
|
- while ((tmt = strchr(Body,'\r')) != NULL) {
|
|
+ while ((tmt = strchr((char *) Body,'\r')) != NULL) {
|
|
*tmt = '\n';
|
|
}
|
|
|