summaryrefslogtreecommitdiff
path: root/src/parse/asset_map.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/asset_map.cc')
-rw-r--r--src/parse/asset_map.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parse/asset_map.cc b/src/parse/asset_map.cc
index aedc931e..484c2710 100644
--- a/src/parse/asset_map.cc
+++ b/src/parse/asset_map.cc
@@ -33,7 +33,8 @@ using namespace libdcp::parse;
AssetMap::AssetMap (string file)
{
- cxml::File f (file, "AssetMap");
+ cxml::Document f ("AssetMap");
+ f.read_file (file);
id = f.string_child ("Id");
creator = f.string_child ("Creator");