[U-Boot] [PATCH 1/9] common/menu.c: Fix build warning
Anatolij Gustschin
agust at denx.de
Sun Dec 4 12:49:46 CET 2011
Hi Marek,
On Sun, 4 Dec 2011 12:27:26 +0100
Marek Vasut <marek.vasut at gmail.com> wrote:
...
> > 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:
I've the newer version from u-boot.git master branch.
Thanks,
Anatolij
More information about the U-Boot
mailing list