mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
0f4482c148
PR: ports/46264 Submitted by: Kuang-che Wu <kcwu@kcwu.dyndns.org>
12 lines
302 B
C++
12 lines
302 B
C++
--- 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;
|
|
}
|
|
|