From: Laszlo Ersek <lersek@redhat.com>
To: Laurent Vivier <lvivier@redhat.com>,
qemu-trivial@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-trivial] [PATCH 5/7] fw_cfg: remove useless casts
Date: Wed, 15 Jun 2016 18:34:39 +0200 [thread overview]
Message-ID: <902c6fb3-967e-9643-5df9-853a83c25649@redhat.com> (raw)
In-Reply-To: <1466007277-17525-6-git-send-email-lvivier@redhat.com>
On 06/15/16 18:14, Laurent Vivier wrote:
> This patch is the result of coccinelle script
> scripts/coccinelle/typecast.cocci
>
> CC: Laszlo Ersek <lersek@redhat.com>
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
> ---
> hw/nvram/fw_cfg.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/hw/nvram/fw_cfg.c b/hw/nvram/fw_cfg.c
> index 74a0079..9d84129 100644
> --- a/hw/nvram/fw_cfg.c
> +++ b/hw/nvram/fw_cfg.c
> @@ -180,7 +180,7 @@ static void fw_cfg_bootsplash(FWCfgState *s)
> temp = qemu_opt_get(opts, "splash-time");
> if (temp != NULL) {
> p = (char *)temp;
> - boot_splash_time = strtol(p, (char **)&p, 10);
> + boot_splash_time = strtol(p, &p, 10);
> }
> }
>
> @@ -240,7 +240,7 @@ static void fw_cfg_reboot(FWCfgState *s)
> temp = qemu_opt_get(opts, "reboot-timeout");
> if (temp != NULL) {
> p = (char *)temp;
> - reboot_timeout = strtol(p, (char **)&p, 10);
> + reboot_timeout = strtol(p, &p, 10);
> }
> }
> /* validate the input */
>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
next prev parent reply other threads:[~2016-06-15 16:35 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-15 16:14 [Qemu-trivial] [PATCH 0/7] Remove useless casts Laurent Vivier
2016-06-15 16:14 ` [Qemu-trivial] [PATCH 1/7] coccinelle: add a script to remove " Laurent Vivier
2016-06-24 17:21 ` [Qemu-trivial] [Qemu-devel] " Eric Blake
2016-06-15 16:14 ` [Qemu-trivial] [PATCH 2/7] linux-user,s390x: remove useless cast Laurent Vivier
2016-06-15 16:14 ` [Qemu-trivial] [PATCH 3/7] s390x: " Laurent Vivier
2016-06-15 16:14 ` [Qemu-trivial] [PATCH 4/7] tricore: " Laurent Vivier
2016-06-16 8:17 ` [Qemu-trivial] [Qemu-devel] " Bastian Koppelmann
2016-06-15 16:14 ` [Qemu-trivial] [PATCH 5/7] fw_cfg: remove useless casts Laurent Vivier
2016-06-15 16:34 ` Laszlo Ersek [this message]
2016-06-15 16:14 ` [Qemu-trivial] [PATCH 6/7] crypto: " Laurent Vivier
2016-06-23 11:07 ` Daniel P. Berrange
2016-09-14 7:40 ` Michael Tokarev
2016-06-15 16:14 ` [Qemu-trivial] [PATCH 7/7] sheepdog: " Laurent Vivier
2016-06-17 3:23 ` [Qemu-trivial] [Qemu-devel] " Hitoshi Mitake
2016-06-23 11:03 ` [Qemu-trivial] [Qemu-devel] [PATCH 0/7] Remove " Laurent Vivier
2016-09-14 7:18 ` [Qemu-trivial] " Michael Tokarev
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=902c6fb3-967e-9643-5df9-853a83c25649@redhat.com \
--to=lersek@redhat.com \
--cc=lvivier@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.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 NNTP newsgroup(s).