Skip to content
Snippets Groups Projects
Commit 4d85302a authored by jsiegle's avatar jsiegle
Browse files

Remove extra parenthesis in readAllFromBuffer()

parent bc0e1839
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ int DataBuffer::readAllFromBuffer(AudioSampleBuffer& data, uint64* timestamp, in
// check to see if the maximum size is smaller than the total number of available ints
// Better version (1/27/14)?
int numReady = abstractFifo.getNumReady());
int numReady = abstractFifo.getNumReady();
int numItems = (maxSize < numReady ) ? maxSize : numReady;
// Original version:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment