[dpdk-dev] [PATCH 1/4] examples/bond: fix compilation with clang

2015-05-18 Thread Olivier MATZ
Hi Bruce, On 05/18/2015 03:53 PM, Bruce Richardson wrote: > On Mon, May 18, 2015 at 10:17:58AM +0200, Olivier Matz wrote: >> Fix the following compilation error: >> >> examples/bond/main.c:717:1: error: control reaches end of >> non-void function [-Werror,-Wreturn-type] >> >> The prompt() functi

[dpdk-dev] [PATCH 1/4] examples/bond: fix compilation with clang

2015-05-18 Thread Bruce Richardson
On Mon, May 18, 2015 at 03:57:00PM +0200, Olivier MATZ wrote: > Hi Bruce, > > On 05/18/2015 03:53 PM, Bruce Richardson wrote: > > On Mon, May 18, 2015 at 10:17:58AM +0200, Olivier Matz wrote: > >> Fix the following compilation error: > >> > >> examples/bond/main.c:717:1: error: control reaches end

[dpdk-dev] [PATCH 1/4] examples/bond: fix compilation with clang

2015-05-18 Thread Bruce Richardson
On Mon, May 18, 2015 at 10:17:58AM +0200, Olivier Matz wrote: > Fix the following compilation error: > > examples/bond/main.c:717:1: error: control reaches end of > non-void function [-Werror,-Wreturn-type] > > The prompt() function does not return anything, so fix its prototype > to be void. >

[dpdk-dev] [PATCH 1/4] examples/bond: fix compilation with clang

2015-05-18 Thread Olivier Matz
Fix the following compilation error: examples/bond/main.c:717:1: error: control reaches end of non-void function [-Werror,-Wreturn-type] The prompt() function does not return anything, so fix its prototype to be void. Signed-off-by: Olivier Matz --- examples/bond/main.c | 2 +- 1 file change