diff options
author | Tushar Gohad <tushar.gohad@intel.com> | 2014-07-22 20:43:37 -0700 |
---|---|---|
committer | Tushar Gohad <tushar.gohad@intel.com> | 2014-07-22 20:45:24 -0700 |
commit | 9069a7a33a010805ccb6c67b8b49bc1c56b25335 (patch) | |
tree | 1a874461c2e09e7de0cc25d945bcffdf8bab86bf /include/erasurecode/erasurecode.h | |
parent | 6a49c02f9d4fce6208a3031f1342541a5cf46851 (diff) | |
download | liberasurecode-9069a7a33a010805ccb6c67b8b49bc1c56b25335.tar.gz |
Fix data_size type, int -> uint64_t
Signed-off-by: Tushar Gohad <tushar.gohad@intel.com>
Diffstat (limited to 'include/erasurecode/erasurecode.h')
-rw-r--r-- | include/erasurecode/erasurecode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/erasurecode/erasurecode.h b/include/erasurecode/erasurecode.h index 57b89fa..b994ba0 100644 --- a/include/erasurecode/erasurecode.h +++ b/include/erasurecode/erasurecode.h @@ -207,7 +207,7 @@ int liberasurecode_verify_stripe_metadata(char **fragments); * needs to be aligned. This computes the sum of the algined fragment * sizes for a given buffer to encode. */ -int liberasurecode_get_aligned_data_size(int desc, int data_len); +int liberasurecode_get_aligned_data_size(int desc, uint64_t data_len); /** * This will return the minumum encode size, which is the minimum |