mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-21 22:52:22 +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
|
// call acquireData one last time to make sure that
|
||||||
// all data have been flushed from the buffer.
|
// all data have been flushed from the buffer.
|
||||||
if (bufferOverflow = false) {
|
if (bufferOverflow == false) {
|
||||||
acquireData();
|
acquireData();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user