From: Sampo Savolainen Date: Mon, 22 Sep 2008 20:43:49 +0000 (+0000) Subject: Removed the extra "long". X-Git-Tag: 2.8.16~1226 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=867193acce129cbb6a235c4e748bfddab329525a;p=ardour.git Removed the extra "long". git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3792 d708f5d6-7413-0410-9779-e7cbd77b26cf --- 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;