Hi, On Sat, 12 May 2007 23:35:10 +0200, Thomas Glanzmann wrote: > This patch moves two inline functions from a header file to the > corresponding c file. Otherwise forte12 refuses to compile git with the > following error: > Did you understand what you did ? You can't put a inline global function in a *.c : you need to put it in the header so that when parsing other files the compiler finds the definition and can inline it. In your patch, you transform a static inline function to a global function whith is not the same thing... Matthieu - 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