Skip to content

Commit 3ab7146

Browse files
committed
ECC508: correct serial number length
1 parent fd0457c commit 3ab7146

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/utility/ECC508.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ String ECC508Class::serialNumber()
5050

5151
result.reserve(18);
5252

53-
for (int i = 0; i < 8; i++) {
53+
for (int i = 0; i < 9; i++) {
5454
byte b = sn[i];
5555

5656
if (b < 16) {

0 commit comments

Comments
 (0)