diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-01 15:07:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-01 15:07:21 +0100 |
| commit | 19818898ac4606388a4848624fa0c92c5ac4e0da (patch) | |
| tree | fb7f73bd4d700ea8a578eb5490165b5325ddabac /src/asset.cc | |
| parent | ca8ec410366fb8c9f554139a342b94b94d277127 (diff) | |
Windows build fixes.
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]; |
