summaryrefslogtreecommitdiff
path: root/libctf
diff options
context:
space:
mode:
authorNick Alcock <nick.alcock@oracle.com>2022-06-10 19:06:59 +0100
committerNick Alcock <nick.alcock@oracle.com>2022-06-21 19:27:15 +0100
commit3ec2b3c05887bd00a6d4a4e94e004c6d9d2f70eb (patch)
tree4f16e53326e51dd62423c01466530409d7216177 /libctf
parent6bd2318f32842a27b03677b670421f93c14f9302 (diff)
downloadbinutils-gdb-3ec2b3c05887bd00a6d4a4e94e004c6d9d2f70eb.tar.gz
libctf: avoid mingw warning
A missing paren led to an intended cast to avoid dependence on the size of size_t in one argument of ctf_err_warn applying to the wrong type by mistake. libctf/ChangeLog: * ctf-serialize.c (ctf_write_mem): Fix cast.
Diffstat (limited to 'libctf')
-rw-r--r--libctf/ctf-serialize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libctf/ctf-serialize.c b/libctf/ctf-serialize.c
index c6b8b495568..ecbc61783f2 100644
--- a/libctf/ctf-serialize.c
+++ b/libctf/ctf-serialize.c
@@ -1319,7 +1319,7 @@ ctf_write_mem (ctf_dict_t *fp, size_t *size, size_t threshold)
{
ctf_set_errno (fp, ENOMEM);
ctf_err_warn (fp, 0, 0, _("ctf_write_mem: cannot allocate %li bytes"),
- (unsigned long) fp->ctf_size + sizeof (struct ctf_header));
+ (unsigned long) (fp->ctf_size + sizeof (struct ctf_header)));
return NULL;
}
ctf_flip_header (hp);