From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Sun, 4 Dec 2011 12:27:26 +0100 Subject: [U-Boot] [PATCH 1/9] common/menu.c: Fix build warning In-Reply-To: <1322930775-4767-1-git-send-email-agust@denx.de> References: <1322930775-4767-1-git-send-email-agust@denx.de> Message-ID: <201112041227.26958.marek.vasut@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de > Fix: > menu.c: In function 'menu_item_print': > menu.c:91: warning: passing argument 1 of 'putc' makes integer from > pointer without a cast > > Signed-off-by: Anatolij Gustschin > --- > common/menu.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/common/menu.c b/common/menu.c > index ca1baef..5e0817c 100644 > --- a/common/menu.c > +++ b/common/menu.c > @@ -88,7 +88,7 @@ static inline void *menu_item_print(struct menu *m, > void *extra) > { > if (!m->item_data_print) { > - putc(item->key); > + puts(item->key); > putc('\n'); > } else { > m->item_data_print(item->data); I see printf("%s\n", item->key); in there ... you might have some newer version though. Please recheck and if that's the case: Acked-by: Marek Vasut