We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b435dc9 commit bc6546eCopy full SHA for bc6546e
src/iceberg/util/uuid.cc
@@ -44,7 +44,7 @@ constexpr std::array<uint8_t, 256> BuildHexTable() {
44
} else if (i >= 'A' && i <= 'F') {
45
buf[i] = static_cast<uint8_t>(i - 'A' + 10);
46
} else {
47
- buf[i] = 0xff;
+ buf[i] = 0xFF;
48
}
49
50
return buf;
0 commit comments