[CAS] Revert an unintentional change in #190634 (#190686)

Revert an unintentional change in #190634 that did an unintentional
implicit signed to unsigned cast.
This commit is contained in:
Steven Wu 2026-04-06 14:37:15 -07:00 committed by GitHub
parent 8a11fe97a2
commit 79e669f000
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,7 +89,7 @@ Error DatabaseFile::addTable(TableHandle Table) {
}
std::optional<TableHandle> DatabaseFile::findTable(StringRef Name) {
uint64_t RootTableOffset = H->RootTableOffset.load();
int64_t RootTableOffset = H->RootTableOffset.load();
if (!RootTableOffset)
return std::nullopt;