1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00
freebsd-ports/lang/rexx-regutil/files/patch-rxsupport.c
Kurt Jaeger 8489b4ac92 lang/rexx-regutil: several patches
- additional MASTER_SITE (there was only one)
- tidied Makefile considerably
- fixed failure to build under different PREFIX
- added DOC option
- added EXAMPLES option, and now can have examples (there were none before)
- eliminated numerous compilation warnings
- REMOVED pkg-plist (only two files in it)
- REMOVED pkg-message (now redundant)
- ADDED new patches in files/

PR:		209379
Submitted by:	bob@eager.cx (maintainer)
2016-05-08 17:50:04 +00:00

12 lines
303 B
C

--- rxsupport.c.orig 2003-09-10 21:09:44 UTC
+++ rxsupport.c
@@ -612,7 +612,7 @@ int cha_adddummy(chararray *ca, const ch
}
ca->array[ca->count].strlength = len;
- ca->array[ca->count++].strptr = (unsigned char *)str;
+ ca->array[ca->count++].strptr = (char *)str;
return 0;
}