X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmidi-stream.cc;h=caeeae55c623570772b89113f7e9b68fc6311d58;hb=1cf3d59c1559fb9774c4c1c8cae155cfe54a927c;hp=89aab84a8b618f7650d2e63b76917aa6b8b7a97d;hpb=1e95a0be01466d1c98644f7705c8e07e41cc645c;p=lilypond.git diff --git a/lily/midi-stream.cc b/lily/midi-stream.cc index 89aab84a8b..caeeae55c6 100644 --- a/lily/midi-stream.cc +++ b/lily/midi-stream.cc @@ -3,7 +3,7 @@ // // source file of the GNU LilyPond music typesetter // -// (c) 1997--1998 Jan Nieuwenhuizen +// (c) 1997--1998 Jan Nieuwenhuizen #include #include "string.hh" @@ -72,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_)); }