summaryrefslogtreecommitdiff
path: root/textproc/isearch/files/patch-src::string.cxx
blob: 784a3ac9cc1458270483187cba3b9b006971b075 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- src/string.cxx.orig	Sun Dec 15 09:27:00 2002
+++ src/string.cxx	Sun Dec 15 09:27:20 2002
@@ -574,7 +574,7 @@
 
 // can this be const STRING& ?
 ostream& operator<<(ostream& os, const STRING& str) {
-  os.write(str.Buffer, str.Length);
+  os.write((char*)str.Buffer, str.Length);
   return os;
 }