diff -r 0ddbb93125d1 -r 03d80fecb999 pathfind.c --- a/pathfind.c Fri Dec 03 05:59:26 2004 +0000 +++ b/pathfind.c Fri Dec 03 07:43:00 2004 +0000 @@ -434,7 +434,7 @@ // called after a new element was added in the queue at the last index. // move it down to the proper position -static void inline HeapifyUp(NewTrackPathFinder *tpf) +static inline void HeapifyUp(NewTrackPathFinder *tpf) { StackedItem si; int i = ++tpf->nstack; @@ -448,7 +448,7 @@ } // called after the element 0 was eaten. fill it with a new element -static void inline HeapifyDown(NewTrackPathFinder *tpf) +static inline void HeapifyDown(NewTrackPathFinder *tpf) { StackedItem si; int i = 1, j;