Skip to content

Commit bc6546e

Browse files
committed
fix: review comment
1 parent b435dc9 commit bc6546e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/iceberg/util/uuid.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ constexpr std::array<uint8_t, 256> BuildHexTable() {
4444
} else if (i >= 'A' && i <= 'F') {
4545
buf[i] = static_cast<uint8_t>(i - 'A' + 10);
4646
} else {
47-
buf[i] = 0xff;
47+
buf[i] = 0xFF;
4848
}
4949
}
5050
return buf;

0 commit comments

Comments
 (0)