Skip to content

Commit

Permalink
[dali] Fix frame packing (openhab#11936)
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Schmid <r.schmid@outlook.com>
  • Loading branch information
rs22 authored and Nemer_Daud committed Jan 28, 2022
1 parent 589e6f8 commit bd55e84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public byte[] pack() {
byte[] result = new byte[bytesList.size()];
int i = 0;
for (byte b : bytesList) {
result[bytesList.size() - i++] = b;
result[bytesList.size() - ++i] = b;
}
return result;
}
Expand Down

0 comments on commit bd55e84

Please sign in to comment.