diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-09-21 13:09:29 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-09-21 15:37:17 +0100 |
commit | 9b0198b2442bc749491d0f1e5e2c811346e5d568 (patch) | |
tree | 6af3f097947c8d5a4ebf5fd5599d1fe1fcc9e96c /odk | |
parent | b3603e0e0e5dbfbeaa2426c499e8f64be2d15765 (diff) |
package: convert internal ZIP handling data-types to 64bit
Prepare for a ZIP64 implementation.
Audit all "Size" property fetches through Anys.
Audit all uses of nSize, nCompressedSize, nOffset through the code.
Add FIXME64: comments to all points requiring future work.
Diffstat (limited to 'odk')
-rw-r--r-- | odk/examples/java/Storage/TestHelper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odk/examples/java/Storage/TestHelper.java b/odk/examples/java/Storage/TestHelper.java index 1a43f4eb4d93..935e0b4a9785 100644 --- a/odk/examples/java/Storage/TestHelper.java +++ b/odk/examples/java/Storage/TestHelper.java @@ -428,7 +428,7 @@ public class TestHelper { { // get "MediaType" and "Size" properties and control there values String sPropMediaType = AnyConverter.toString( xPropSet.getPropertyValue( "MediaType" ) ); - int nPropSize = AnyConverter.toInt( xPropSet.getPropertyValue( "Size" ) ); + long nPropSize = AnyConverter.toLong( xPropSet.getPropertyValue( "Size" ) ); bOk = true; if ( !sPropMediaType.equals( sMediaType ) ) |