diff --git a/libraries/networking/src/udt/Connection.cpp b/libraries/networking/src/udt/Connection.cpp index d4dd0be7bf..d43901f705 100644 --- a/libraries/networking/src/udt/Connection.cpp +++ b/libraries/networking/src/udt/Connection.cpp @@ -65,7 +65,7 @@ void Connection::sync() { // we do this if it has been longer than the current nakInterval since we last sent auto now = high_resolution_clock::now(); - if (duration_cast(now - _lastNAKTime).count() >= _nakInterval) { + if (duration_cast(now - _lastNAKTime).count() >= _nakInterval) { // construct a NAK packet that will hold all of the lost sequence numbers auto lossListPacket = ControlPacket::create(ControlPacket::TimeoutNAK, _lossList.getLength() * sizeof(SequenceNumber));