Skip to content

Commit

Permalink
use correct variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
bertmelis committed May 20, 2022
1 parent d5fdd11 commit 06fcf1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Packets/Packet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ size_t Packet::size() const {
}

void Packet::setDup() {
if (!data) return;
if (!_data) return;
_data[0] |= 0x08;
}

Expand Down

0 comments on commit 06fcf1e

Please sign in to comment.