summaryrefslogtreecommitdiff
path: root/src/asset_map.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/asset_map.cc')
-rw-r--r--src/asset_map.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/asset_map.cc b/src/asset_map.cc
index 11e80284..9276170c 100644
--- a/src/asset_map.cc
+++ b/src/asset_map.cc
@@ -8,7 +8,7 @@ AssetMap::AssetMap (string file)
{
id = string_node ("Id");
creator = string_node ("Creator");
- volume_count = int_node ("VolumeCount");
+ volume_count = int64_node ("VolumeCount");
issue_date = string_node ("IssueDate");
issuer = string_node ("Issuer");
assets = sub_nodes<AssetMapAsset> ("AssetList", "Asset");
@@ -26,8 +26,8 @@ Chunk::Chunk (xmlpp::Node const * node)
: XMLNode (node)
{
path = string_node ("Path");
- volume_index = int_node ("VolumeIndex");
- offset = int_node ("Offset");
- length = int_node ("Length");
+ volume_index = int64_node ("VolumeIndex");
+ offset = int64_node ("Offset");
+ length = int64_node ("Length");
}