From 6433d569753e8d33d3f7beca16a65f2fc481aade Mon Sep 17 00:00:00 2001 From: Ben Walton Date: Sun, 28 Sep 2014 08:50:26 +0100 Subject: trace.c: do not mark getnanotime() as "inline" Oracle Studio compilers don't allow for static variables in functions that are defined to be inline. GNU C does permit this. Let's reference the C99 standard though, which doesn't allow for inline functions to contain modifiable static variables. Signed-off-by: Ben Walton Signed-off-by: Junio C Hamano --- trace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'trace.c') diff --git a/trace.c b/trace.c index e583dc63bb..03990df747 100644 --- a/trace.c +++ b/trace.c @@ -384,7 +384,7 @@ static inline uint64_t gettimeofday_nanos(void) * Returns nanoseconds since the epoch (01/01/1970), for performance tracing * (i.e. favoring high precision over wall clock time accuracy). */ -inline uint64_t getnanotime(void) +uint64_t getnanotime(void) { static uint64_t offset; if (offset > 1) { -- cgit v1.2.3