Fix if statement for overflow (#121)

This commit is contained in:
bluetintedfortress 2024-08-26 11:15:11 +01:00 committed by GitHub
parent b5b9b94735
commit cfd42779a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 {