summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'libsparse/include/sparse/sparse.h')
-rw-r--r--libsparse/include/sparse/sparse.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libsparse/include/sparse/sparse.h b/libsparse/include/sparse/sparse.h
index 8b757d22a..42d4adb87 100644
--- a/libsparse/include/sparse/sparse.h
+++ b/libsparse/include/sparse/sparse.h
@@ -234,6 +234,7 @@ struct sparse_file *sparse_file_import(int fd, bool verbose, bool crc);
234 * 234 *
235 * @fd - file descriptor to read from 235 * @fd - file descriptor to read from
236 * @crc - verify the crc of a file in the Android sparse file format 236 * @crc - verify the crc of a file in the Android sparse file format
237 * @verbose - whether to use verbose logging
237 * 238 *
238 * Reads an existing sparse or normal file into a sparse file cookie. 239 * Reads an existing sparse or normal file into a sparse file cookie.
239 * Attempts to determine if the file is sparse or not by looking for the sparse 240 * Attempts to determine if the file is sparse or not by looking for the sparse
@@ -243,7 +244,7 @@ struct sparse_file *sparse_file_import(int fd, bool verbose, bool crc);
243 * 244 *
244 * Returns a new sparse file cookie on success, NULL on error. 245 * Returns a new sparse file cookie on success, NULL on error.
245 */ 246 */
246struct sparse_file *sparse_file_import_auto(int fd, bool crc); 247struct sparse_file *sparse_file_import_auto(int fd, bool crc, bool verbose);
247 248
248/** sparse_file_resparse - rechunk an existing sparse file into smaller files 249/** sparse_file_resparse - rechunk an existing sparse file into smaller files
249 * 250 *