Index: gtk2_ardour/export_dialog.cc =================================================================== --- gtk2_ardour/export_dialog.cc (revision 4093) +++ gtk2_ardour/export_dialog.cc (working copy) @@ -807,9 +807,9 @@ out << "TITLE \"" << session->name() << "\"" << endl; if ((header_format_combo.get_active_text() == N_("WAV"))) { - out << "FILE " << path << " WAVE" << endl; + out << "FILE \"" << path << "\" WAVE" << endl; } else { - out << "FILE " << path << ' ' << (header_format_combo.get_active_text()) << endl; + out << "FILE \"" << path << "\" " << (header_format_combo.get_active_text()) << endl; } if (false && numtracks == 0) {