All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jean Delvare <khali@linux-fr.org>
To: lm-sensors@vger.kernel.org
Subject: Re: [lm-sensors] [PATCH 3/5] sensord: Remove needless casts
Date: Tue, 23 Jun 2009 10:04:07 +0000	[thread overview]
Message-ID: <20090623120407.4ee66667@hyperion.delvare> (raw)
In-Reply-To: <20090615074919.GG4667@ubuntu>

On Mon, 15 Jun 2009 09:49:19 +0200, Andre Prendel wrote:
> This patch removes some needless casts. We don't have to cast
> explicitly from void * (in C).
> ---
> 
>  rrd.c |    6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> Index: sensors/prog/sensord/rrd.c
> =================================> --- sensors.orig/prog/sensord/rrd.c	2009-06-09 22:11:20.000000000 +0200
> +++ sensors/prog/sensord/rrd.c	2009-06-10 11:31:02.000000000 +0200
> @@ -196,7 +196,7 @@
>  {
>  	(void) label; /* no warning */
>  	if (!feature || feature->rrd) {
> -		struct ds *data = (struct ds *) _data;
> +		struct ds *data = _data;
>  		char *ptr = rrdBuff + data->num * RRD_BUFF;
>  		const char *min, *max;
>  		data->argv[data->num ++] = ptr;
> @@ -306,7 +306,7 @@
>  static int rrdCGI_DEF(void *_data, const char *rawLabel, const char *label,
>  		      const FeatureDescriptor *feature)
>  {
> -	struct gr *data = (struct gr *) _data;
> +	struct gr *data = _data;
>  	(void) label; /* no warning */
>  	if (!feature || (feature->rrd && (feature->type = data->type)))
>  		printf("\n\tDEF:%s=%s:%s:AVERAGE", rawLabel,
> @@ -342,7 +342,7 @@
>  static int rrdCGI_LINE(void *_data, const char *rawLabel, const char *label,
>  		       const FeatureDescriptor *feature)
>  {
> -	struct gr *data = (struct gr *) _data;
> +	struct gr *data = _data;
>  	if (!feature || (feature->rrd && (feature->type = data->type)))
>  		printf("\n\tLINE2:%s#%.6x:\"%s\"", rawLabel,
>  		       rrdCGI_color(label), label);

Agreed, thanks.

-- 
Jean Delvare

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

      reply	other threads:[~2009-06-23 10:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-15  7:49 [lm-sensors] [PATCH 3/5] sensord: Remove needless casts Andre Prendel
2009-06-23 10:04 ` Jean Delvare [this message]

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=20090623120407.4ee66667@hyperion.delvare \
    --to=khali@linux-fr.org \
    --cc=lm-sensors@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.