examples/bond: fix build with clang
authorOlivier Matz <olivier.matz@6wind.com>
Mon, 18 May 2015 08:17:58 +0000 (10:17 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 19 May 2015 15:35:33 +0000 (17:35 +0200)
commit4ae39dfa69ad9a1ae6174f52c60c187d2843402b
tree26ccde93317a8bd80ea8b8fce71ac3290fbf4fff
parent0fbcba7b3614569f3430ce1493f6a5f5a787c023
examples/bond: fix build with clang

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 <olivier.matz@6wind.com>
examples/bond/main.c