]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/midi-stream.cc
release: 1.1.29
[lilypond.git] / lily / midi-stream.cc
index efc244c5de69538a56b997c85f5be076d2ce8112..f51110daed2d448f8ce90965c53deff9ac313a26 100644 (file)
@@ -1,12 +1,11 @@
 //
-// midistream.cc
+// midi-stream.cc
 //
 // source file of the GNU LilyPond music typesetter
 //
-// (c) 1997 Jan Nieuwenhuizen <jan@digicash.com>
+// (c)  1997--1999 Jan Nieuwenhuizen <janneke@gnu.org>
 
 #include <fstream.h>
-#include <time.h>
 #include "string.hh"
 #include "string-convert.hh"
 #include "main.hh"
@@ -73,7 +72,7 @@ Midi_stream::operator << (int i)
 void
 Midi_stream::open ()
 {
-  os_p_ = new ofstream (filename_str_.ch_C ());
+  os_p_ = new ofstream (filename_str_.ch_C (),ios::out|ios::bin);
   if (!*os_p_)
-    error (_ ("can't open `") + filename_str_ + "\'");
+    error (_f ("can't open file: `%s\'", filename_str_));
 }