mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Jan Luebbe <jlu@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH] stringlist: string_list_contains can use a const string
Date: Wed, 19 Nov 2014 14:34:28 +0100	[thread overview]
Message-ID: <1416404068-8526-1-git-send-email-jlu@pengutronix.de> (raw)

Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
---
 include/stringlist.h | 2 +-
 lib/stringlist.c     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/stringlist.h b/include/stringlist.h
index 127998cb6e21..2e2addf98f19 100644
--- a/include/stringlist.h
+++ b/include/stringlist.h
@@ -11,7 +11,7 @@ struct string_list {
 int string_list_add(struct string_list *sl, char *str);
 int string_list_add_asprintf(struct string_list *sl, const char *fmt, ...);
 int string_list_add_sorted(struct string_list *sl, char *str);
-int string_list_contains(struct string_list *sl, char *str);
+int string_list_contains(struct string_list *sl, const char *str);
 void string_list_print_by_column(struct string_list *sl);
 
 static inline void string_list_init(struct string_list *sl)
diff --git a/lib/stringlist.c b/lib/stringlist.c
index cc84944f73b3..57801b3bb04d 100644
--- a/lib/stringlist.c
+++ b/lib/stringlist.c
@@ -60,7 +60,7 @@ int string_list_add_sorted(struct string_list *sl, char *str)
 	return 0;
 }
 
-int string_list_contains(struct string_list *sl, char *str)
+int string_list_contains(struct string_list *sl, const char *str)
 {
 	struct string_list *entry;
 
-- 
2.1.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2014-11-19 13:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-19 13:34 Jan Luebbe [this message]
2014-11-20 13:36 ` Sascha Hauer

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=1416404068-8526-1-git-send-email-jlu@pengutronix.de \
    --to=jlu@pengutronix.de \
    --cc=barebox@lists.infradead.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