From 9e49e2fa6561d96809564bf5a5bcd88424b39593 Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Mon, 25 Sep 2017 20:02:07 +0200 Subject: [PATCH] makefile: missing depend on pb.o --- Makefile | 2 ++ contain.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 08d7a84..af1e6d2 100644 --- a/Makefile +++ b/Makefile @@ -76,6 +76,8 @@ ifeq ("$(wildcard kafel/Makefile)","") endif $(MAKE) -C kafel +$(SRCS_CXX): $(SRCS_PB_O) + $(SRCS_PB_O): $(SRCS_PB_CXX) $(SRCS_PB_H) $(SRCS_PB_CXX) $(SRCS_PB_H): $(SRCS_PROTO) diff --git a/contain.h b/contain.h index edba108..31c8714 100644 --- a/contain.h +++ b/contain.h @@ -26,7 +26,7 @@ #include "common.h" -bool containSetupFD(struct nsjconf_t *nsjconf, int fd_in, int fd_out, int fd_err); +bool containSetupFD(struct nsjconf_t * nsjconf, int fd_in, int fd_out, int fd_err); bool containContain(struct nsjconf_t *nsjconf); #endif /* NS_CONTAIN_H */ -- 2.7.4