public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
From: Michael Frysinger <vapier@sourceware.org>
To: newlib-cvs@sourceware.org
Subject: [newlib-cygwin/main] libgloss: csky: fix pointer-to-integer warning
Date: Fri, 13 Jan 2023 22:28:36 +0000 (GMT)	[thread overview]
Message-ID: <20230113222838.214A13858C33@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=73e4ded2fe17b3a970c94a421c4b2191ca49a194

commit 73e4ded2fe17b3a970c94a421c4b2191ca49a194
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Thu Jan 12 23:36:07 2023 -0500

    libgloss: csky: fix pointer-to-integer warning
    
    parameters is an array of integers, so assigning NULL (a pointer)
    doesn't make sense.  Use 0 instead which produces the same code.

Diff:
---
 libgloss/csky/io-gettimeofday.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libgloss/csky/io-gettimeofday.c b/libgloss/csky/io-gettimeofday.c
index 77f446fb8..59b1abb83 100644
--- a/libgloss/csky/io-gettimeofday.c
+++ b/libgloss/csky/io-gettimeofday.c
@@ -43,7 +43,7 @@ int gettimeofday (struct timeval *tv, void *tzvp)
       return -1;
     }
   parameters[0] = (uint32_t) &gtv;
-  parameters[1] = NULL;
+  parameters[1] = 0;
   ret = __hosted (HOSTED_GETTIMEOFDAY, parameters);
   __hosted_from_gdb_timeval (&gtv, tv);
   errno = __hosted_from_gdb_errno (parameters[0]);

                 reply	other threads:[~2023-01-13 22:28 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=20230113222838.214A13858C33@sourceware.org \
    --to=vapier@sourceware.org \
    --cc=newlib-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).