Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 May 2016 08:49:57 -0700
From:      Adrian Chadd <adrian.chadd@gmail.com>
To:        Ed Maste <emaste@freebsd.org>
Cc:        "src-committers@freebsd.org" <src-committers@freebsd.org>,  "svn-src-all@freebsd.org" <svn-src-all@freebsd.org>,  "svn-src-head@freebsd.org" <svn-src-head@freebsd.org>
Subject:   Re: svn commit: r299119 - head/sys/dev/bhnd
Message-ID:  <CAJ-Vmo=dub9TVGWUVPRru7yKAnAt_VCSrJ5muO9_Qgj93J7YeA@mail.gmail.com>
In-Reply-To: <201605051507.u45F7e8f058484@repo.freebsd.org>
References:  <201605051507.u45F7e8f058484@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Thanks! Sorry!

-a


On 5 May 2016 at 08:07, Ed Maste <emaste@freebsd.org> wrote:
> Author: emaste
> Date: Thu May  5 15:07:40 2016
> New Revision: 299119
> URL: https://svnweb.freebsd.org/changeset/base/299119
>
> Log:
>   bhnd: fix build on gcc architectures
>
>   "make tinderbox" fails on sparc64 GENERIC-NODEBUG with:
>   bhnd_subr.c:188: warning: control reaches end of non-void function
>
>   Sponsored by: The FreeBSD Foundation
>
> Modified:
>   head/sys/dev/bhnd/bhnd_subr.c
>
> Modified: head/sys/dev/bhnd/bhnd_subr.c
> ==============================================================================
> --- head/sys/dev/bhnd/bhnd_subr.c       Thu May  5 13:54:50 2016        (r299118)
> +++ head/sys/dev/bhnd/bhnd_subr.c       Thu May  5 15:07:40 2016        (r299119)
> @@ -184,6 +184,8 @@ bhnd_port_type_name(bhnd_port_type port_
>                 return ("bridge");
>         case BHND_PORT_AGENT:
>                 return ("agent");
> +       default:
> +               return "unknown";
>         }
>  }
>
>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAJ-Vmo=dub9TVGWUVPRru7yKAnAt_VCSrJ5muO9_Qgj93J7YeA>