git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Luiz Fernando N. Capitulino" <lcapitulino@mandriva.com.br>
To: Junio C Hamano <junkio@cox.net>
Cc: Andy Parkins <andyparkins@gmail.com>, git@vger.kernel.org
Subject: Re: [PATCH 01/02] ident.c: Use const qualifier when possible
Date: Sun, 15 Apr 2007 18:40:31 -0300	[thread overview]
Message-ID: <20070415184031.2df65364@gnut> (raw)
In-Reply-To: <7vslb12y4e.fsf@assigned-by-dhcp.cox.net>

Em Sun, 15 Apr 2007 13:14:57 -0700
Junio C Hamano <junkio@cox.net> escreveu:

| Andy Parkins <andyparkins@gmail.com> writes:
| 
| > On Sunday 2007, April 15, Luiz Fernando N. Capitulino wrote:
| >
| >> -static const char *env_hint =
| >> +static const char const *env_hint =
| >
| > You can see then that
| >
| >  const char const *env_hint
| >
| > is redundant, it's simply saying twice that (*env_hint) is const.
| 
| I think he wanted to say
| 
| 	static const char *const env_hint = ...

 Urgh, yes. And it's not possible to make the pointer const
because we change the value it points to (-2 for me).

 Updated version follows. I don't need to send the second
again, right?

From: Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br>
Subject: [PATCH] ident.c: Use const qualifier for 'struct passwd' parameters

Signed-off-by: Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br>
---
 ident.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ident.c b/ident.c
index bb03bdd..b557ecd 100644
--- a/ident.c
+++ b/ident.c
@@ -9,7 +9,7 @@
 
 static char git_default_date[50];
 
-static void copy_gecos(struct passwd *w, char *name, int sz)
+static void copy_gecos(const struct passwd *w, char *name, int sz)
 {
 	char *src, *dst;
 	int len, nlen;
@@ -43,7 +43,7 @@ static void copy_gecos(struct passwd *w, char *name, int sz)
 
 }
 
-static void copy_email(struct passwd *pw)
+static void copy_email(const struct passwd *pw)
 {
 	/*
 	 * Make up a fake email address
-- 
1.5.1.1.86.gfd56-dirty

      reply	other threads:[~2007-04-15 21:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-04-15 18:51 [PATCH 01/02] ident.c: Use const qualifier when possible Luiz Fernando N. Capitulino
2007-04-15 20:06 ` Andy Parkins
2007-04-15 20:14   ` Junio C Hamano
2007-04-15 21:40     ` Luiz Fernando N. Capitulino [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=20070415184031.2df65364@gnut \
    --to=lcapitulino@mandriva.com.br \
    --cc=andyparkins@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=junkio@cox.net \
    /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).