On Mon, Aug 31, 2015 at 11:56:04AM -0700, Junio C Hamano wrote: > Stefan Beller <sbeller@xxxxxxxxxx> writes: > > > +static void destroy_output_mutex() > > static void destroy_output_mutex(void) Yep. Stefan, you may want to beef up the warning flags in your config.mak. For reference, I use: CFLAGS += -Wall -Werror CFLAGS += -Wdeclaration-after-statement CFLAGS += -Wpointer-arith CFLAGS += -Wstrict-prototypes CFLAGS += -Wvla CFLAGS += -Wold-style-declaration CFLAGS += -Wold-style-definition though note that you will need to relax some of those if compiling older versions of git. My complete config.mak is at: https://github.com/peff/git/blob/meta/config/config.mak which handles this semi-automatically (it's wildly undocumented, but I'd be happy to explain any of it if anybody is interested). -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html