summaryrefslogtreecommitdiff
path: root/src/asset_map.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-31 11:41:22 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-31 11:41:22 +0100
commit32e93176fa91b215d68dee24e7887a21041da54c (patch)
tree1221f90e46882ef2837f554a0b8e59ea359ae916 /src/asset_map.cc
parent32af25f217aa857b6ea7df3e8e18ff9df5f85dea (diff)
Use int64 in a few places.
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");
}