summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-12-12 20:12:03 +0000
committerDavid Robillard <d@drobilla.net>2007-12-12 20:12:03 +0000
commite72dbd02e5eae0b9f4896bbc489253a548fb6ee8 (patch)
treedc3b47c937b1bd8ac2f2c12154c3bd422e33a024 /src
parent625675cded1f797080083bcc87118ce6bf04ce04 (diff)
downloadingen-e72dbd02e5eae0b9f4896bbc489253a548fb6ee8.tar.gz
ingen-e72dbd02e5eae0b9f4896bbc489253a548fb6ee8.tar.bz2
ingen-e72dbd02e5eae0b9f4896bbc489253a548fb6ee8.zip
Fix initialisation order warnings.
git-svn-id: http://svn.drobilla.net/lad/ingen@972 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/libs/engine/JackAudioDriver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/engine/JackAudioDriver.cpp b/src/libs/engine/JackAudioDriver.cpp
index 8d8203ce..55a18b12 100644
--- a/src/libs/engine/JackAudioDriver.cpp
+++ b/src/libs/engine/JackAudioDriver.cpp
@@ -289,7 +289,7 @@ JackAudioDriver::_process_cb(jack_nframes_t nframes)
// Jack can elect to not call this function for a cycle, if overloaded
// FIXME: this doesn't make sense, and the start time isn't used anyway
const jack_nframes_t start_of_current_cycle = jack_last_frame_time(_client);
- const jack_nframes_t start_of_last_cycle = start_of_current_cycle - nframes; // FIXME: maybe not..
+ //const jack_nframes_t start_of_last_cycle = start_of_current_cycle - nframes; // FIXME: maybe not..
const jack_nframes_t end_of_current_cycle = start_of_current_cycle + nframes;
// FIXME: ditto