13
0

remove another instance of access(2)

git-svn-id: svn://localhost/ardour2/branches/3.0@9337 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-04-09 15:01:06 +00:00
parent a9a05441ae
commit aca716c0d6

View File

@ -3646,7 +3646,7 @@ Session::write_one_track (AudioTrack& track, framepos_t start, framepos_t end,
for (x = 0; x < 99999; ++x) {
snprintf (buf, sizeof(buf), "%s/%s-%d-bounce-%" PRIu32 "%s", sound_dir.c_str(), playlist->name().c_str(), chan_n, x+1, ext.c_str());
if (access (buf, F_OK) != 0) {
if (!Glib::file_test (buf, Glib::FILE_TEST_EXISTS)) {
break;
}
}