public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
From: Nick Alcock <nix@sourceware.org>
To: bfd-cvs@sourceware.org, gdb-cvs@sourceware.org
Subject: [binutils-gdb] libctf: avoid mingw warning
Date: Tue, 21 Jun 2022 18:30:20 +0000 (GMT)	[thread overview]
Message-ID: <20220621183020.D506D385734E@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=3ec2b3c05887bd00a6d4a4e94e004c6d9d2f70eb

commit 3ec2b3c05887bd00a6d4a4e94e004c6d9d2f70eb
Author: Nick Alcock <nick.alcock@oracle.com>
Date:   Fri Jun 10 19:06:59 2022 +0100

    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.

Diff:
---
 libctf/ctf-serialize.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);


                 reply	other threads:[~2022-06-21 18:30 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220621183020.D506D385734E@sourceware.org \
    --to=nix@sourceware.org \
    --cc=bfd-cvs@sourceware.org \
    --cc=gdb-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).