diff options
Diffstat (limited to 'src/asset.cc')
| -rw-r--r-- | src/asset.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/asset.cc b/src/asset.cc index de299d34..f8362c8b 100644 --- a/src/asset.cc +++ b/src/asset.cc @@ -123,8 +123,8 @@ Asset::equals (shared_ptr<const Asset> other, EqualityFlags flags) const return notes; } - ifstream a (mxf_path().c_str(), ios::binary); - ifstream b (other->mxf_path().c_str(), ios::binary); + ifstream a (mxf_path().string().c_str(), ios::binary); + ifstream b (other->mxf_path().string().c_str(), ios::binary); int buffer_size = 65536; char abuffer[buffer_size]; |
