From 867193acce129cbb6a235c4e748bfddab329525a Mon Sep 17 00:00:00 2001 From: Sampo Savolainen Date: Mon, 22 Sep 2008 20:43:49 +0000 Subject: [PATCH] Removed the extra "long". git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3792 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/ardour/cycles.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ardour/cycles.h b/libs/ardour/ardour/cycles.h index a18ea23ba1..2199a2eb9c 100644 --- a/libs/ardour/ardour/cycles.h +++ b/libs/ardour/ardour/cycles.h @@ -48,7 +48,7 @@ extern cycles_t cacheflush_time; static inline cycles_t get_cycles (void) { - cycles_t long ret; + cycles_t ret; rdtscll(ret); return ret & 0xffffffff;