1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-06 22:51:41 +00:00
freebsd-ports/devel/cccc/files/patch-ac
Jacques Vidrine 26f7563303 Unbreak.
2000-03-30 20:40:56 +00:00

13 lines
435 B
Plaintext

--- cccc_utl.cc.orig Thu Mar 30 12:22:38 2000
+++ cccc_utl.cc Thu Mar 30 12:25:29 2000
@@ -212,7 +212,8 @@
for(i=0;i<pssLAST; i++) {
CCCC_String sep;
if(i==pssMODULE) { sep="::"; } else { sep=" "; }
- if(string[i]!="") { os << string[i] << sep; }
+ if(static_cast<const char*>(string[i])!="")
+ os << string[i] << sep;
}
os << " Attributes: ";
for(i=0; i<psfLAST; i++) {