mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-21 14:42:27 +00:00
Fix if statement for overflow (#121)
This commit is contained in:
parent
b5b9b94735
commit
cfd42779a1
@ -429,7 +429,7 @@ public class AcquisitionProcess extends PamProcess {
|
||||
|
||||
// call acquireData one last time to make sure that
|
||||
// all data have been flushed from the buffer.
|
||||
if (bufferOverflow = false) {
|
||||
if (bufferOverflow == false) {
|
||||
acquireData();
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user