blob: e08e7b4a0c9ed4bb596b02783da4e5d663309b72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- class/class.cc 3 Nov 2004 06:57:51 -0000 1.1
+++ class/class.cc 4 Nov 2004 10:58:04 -0000 1.2
@@ -3310,7 +3310,7 @@
BOstream of;
of.open(obj.name, ios::out | ios::binary);
#else
- ofstream of( obj.name, ios::out | ios::bin );
+ ofstream of( obj.name, ios::out | ios::binary );
#endif
if (of.fail()) {
cerr << "FATAL ERROR: unable to open output file '" << obj.name << "'\n";
|