diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/ctf-api.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 5b2bb61..c53e405 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2020-08-27 Nick Alcock <nick.alcock@oracle.com> + + * ctf-api.h (ctf_errwarning_next): New err parameter. + 2020-08-26 Nick Clifton <nickc@redhat.com> PR 26405 diff --git a/include/ctf-api.h b/include/ctf-api.h index 77ea5cd..3a8e942 100644 --- a/include/ctf-api.h +++ b/include/ctf-api.h @@ -411,7 +411,7 @@ extern char *ctf_dump (ctf_file_t *, ctf_dump_state_t **state, the error/warning list, in order of emission. Errors and warnings are popped after return: the caller must free the returned error-text pointer. */ extern char *ctf_errwarning_next (ctf_file_t *, ctf_next_t **, - int *is_warning); + int *is_warning, int *errp); extern ctf_id_t ctf_add_array (ctf_file_t *, uint32_t, const ctf_arinfo_t *); |