aboutsummaryrefslogtreecommitdiff
path: root/libctf/testsuite/libctf-regression/open-error-free.c
diff options
context:
space:
mode:
authorNick Alcock <nick.alcock@oracle.com>2024-06-19 14:06:26 +0100
committerNick Alcock <nick.alcock@oracle.com>2024-06-19 15:51:24 +0100
commitb84ffc176d3ab90a5dd42e406f84b2207f2782ca (patch)
tree7fb14515c901b47af902f63096bd9d75fced6343 /libctf/testsuite/libctf-regression/open-error-free.c
parentea4e03c0a9f5ed8574dcaa434cd979a6f92f5c1f (diff)
downloadgdb-b84ffc176d3ab90a5dd42e406f84b2207f2782ca.zip
gdb-b84ffc176d3ab90a5dd42e406f84b2207f2782ca.tar.gz
gdb-b84ffc176d3ab90a5dd42e406f84b2207f2782ca.tar.bz2
libctf: fix testsuite bugs revealed by -Wall
Most of these are harmless, but some of the type confusions and especially a missing ctf_strerror() on an error path were actual bugs that could have resulted in test failures crashing rather than printing an error message. libctf/ * testsuite/libctf-lookup/enumerator-iteration.c: Fix type confusion, signedness confusion and a missing ctf_errmsg(). * testsuite/libctf-regression/libctf-repeat-cu-main.c: Return 0 from the test function. * testsuite/libctf-regression/open-error-free.c: Fix signedness confusion. * testsuite/libctf-regression/zrewrite.c: Remove unused label.
Diffstat (limited to 'libctf/testsuite/libctf-regression/open-error-free.c')
-rw-r--r--libctf/testsuite/libctf-regression/open-error-free.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libctf/testsuite/libctf-regression/open-error-free.c b/libctf/testsuite/libctf-regression/open-error-free.c
index edc5f34..7405cdb 100644
--- a/libctf/testsuite/libctf-regression/open-error-free.c
+++ b/libctf/testsuite/libctf-regression/open-error-free.c
@@ -143,7 +143,7 @@ int main (void)
failure after we corrupt it: the leak is only observable if the dict gets
malloced, which only happens after that point.) */
- if ((written = ctf_write_mem (fp, &written_size, (size_t) -1)) == NULL)
+ if ((written = (char *) ctf_write_mem (fp, &written_size, (size_t) -1)) == NULL)
goto write_err;
ctf_dict_close (fp);