mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Correct the return type of archive_write_data
to match the documentation. MFC after: 30 days
This commit is contained in:
parent
49f89e883c
commit
cc11275dd4
1 changed files with 1 additions and 1 deletions
|
|
@ -291,7 +291,7 @@ int archive_write_open_file(struct archive *, const char *_file);
|
|||
*/
|
||||
int archive_write_header(struct archive *,
|
||||
struct archive_entry *);
|
||||
int archive_write_data(struct archive *, const void *, size_t);
|
||||
ssize_t archive_write_data(struct archive *, const void *, size_t);
|
||||
int archive_write_close(struct archive *);
|
||||
void archive_write_finish(struct archive *);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue