diff options
author | Geoff Levand <geoff@infradead.org> | 2013-04-15 13:41:55 -0700 |
---|---|---|
committer | Geoff Levand <geoff@infradead.org> | 2013-04-15 13:41:55 -0700 |
commit | 80c072a44cb665495afe08ce37cbf4f2086d5529 (patch) | |
tree | 07ad636aafb2ac946e7d2a9d084104143fef75ef /ui/ncurses | |
parent | 3ea411971ea7db66c44527aa720d82567b7a1a5a (diff) | |
download | talos-petitboot-80c072a44cb665495afe08ce37cbf4f2086d5529.tar.gz talos-petitboot-80c072a44cb665495afe08ce37cbf4f2086d5529.zip |
ncurses: Fix build warning
Add missing header include. Fixes this warning:
ui/ncurses/nc-cui.c: warning: implicit declaration of function 'pb_protocol_device_cmp'
Signed-off-by: Geoff Levand <geoff@infradead.org>
Diffstat (limited to 'ui/ncurses')
-rw-r--r-- | ui/ncurses/nc-cui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/ncurses/nc-cui.c b/ui/ncurses/nc-cui.c index 37ba1c4..2d4dea5 100644 --- a/ui/ncurses/nc-cui.c +++ b/ui/ncurses/nc-cui.c @@ -25,6 +25,7 @@ #include <sys/ioctl.h> #include "log/log.h" +#include "pb-protocol/pb-protocol.h" #include "talloc/talloc.h" #include "waiter/waiter.h" #include "ui/common/discover-client.h" |