summaryrefslogtreecommitdiff
path: root/src/pkl.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/pkl.cc
parent32af25f217aa857b6ea7df3e8e18ff9df5f85dea (diff)
Use int64 in a few places.
Diffstat (limited to 'src/pkl.cc')
-rw-r--r--src/pkl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkl.cc b/src/pkl.cc
index 7e492d99..23a4f533 100644
--- a/src/pkl.cc
+++ b/src/pkl.cc
@@ -20,7 +20,7 @@ PKLAsset::PKLAsset (xmlpp::Node const * node)
id = string_node ("Id");
annotation_text = optional_string_node ("AnnotationText");
hash = string_node ("Hash");
- size = int_node ("Size");
+ size = int64_node ("Size");
type = string_node ("Type");
}