summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Lambert <eric.lambert@seagate.com>2014-10-06 07:36:46 -0700
committerEric Lambert <eric.lambert@seagate.com>2014-10-06 07:36:46 -0700
commit8af729620543650ea108febc459b5a2b205dccc7 (patch)
treef75ea89ee11ef615ac61de470a340781dbd96a9e /include
parent62fba6ba49ab216dbb19c7b7dcbd83804fe7f66e (diff)
downloadliberasurecode-8af729620543650ea108febc459b5a2b205dccc7.tar.gz
reorder add_fragment_metadata arg list to be consistent with rest of code
Diffstat (limited to 'include')
-rw-r--r--include/erasurecode/erasurecode_postprocessing.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/erasurecode/erasurecode_postprocessing.h b/include/erasurecode/erasurecode_postprocessing.h
index a4ab881..395700d 100644
--- a/include/erasurecode/erasurecode_postprocessing.h
+++ b/include/erasurecode/erasurecode_postprocessing.h
@@ -33,8 +33,8 @@ int finalize_fragments_after_encode(ec_backend_t instance,
int k, int m, int blocksize, uint64_t orig_data_size,
char **encoded_data, char **encoded_parity);
-void add_fragment_metadata(char *fragment,
+void add_fragment_metadata(ec_backend_t instance, char *fragment,
int idx, uint64_t orig_data_size, int blocksize,
- ec_checksum_type_t ct, int add_chksum, ec_backend_t instance);
+ ec_checksum_type_t ct, int add_chksum);
#endif