From 87db7322d2153cc0c0a1703b0143f737c0681ee0 Mon Sep 17 00:00:00 2001 From: sletz Date: Fri, 27 Jul 2007 18:48:29 +0000 Subject: [PATCH] Cleanup git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1505 0c269be4-1314-0410-8aa9-9f06e86f4224 --- common/JackAtomicState.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/JackAtomicState.h b/common/JackAtomicState.h index 00e96b66..07caf509 100644 --- a/common/JackAtomicState.h +++ b/common/JackAtomicState.h @@ -218,15 +218,15 @@ class JackAtomicState { T* state; UInt16 cur_index; - UInt16 next_index = GetCurrentIndex(); + UInt16 next_index = GetCurrentIndex(); do { - cur_index = next_index; + cur_index = next_index; state = ReadCurrentState(); ...... ...... - next_index = GetCurrentIndex(); + next_index = GetCurrentIndex(); } while (cur_index != next_index); } */