mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix incompatible compilation in Linux server
This commit is contained in:
@@ -65,8 +65,8 @@ Status Footer::DecodeFrom(Slice* input) {
|
||||
if (magic != table_magic_number()) {
|
||||
char buffer[80];
|
||||
snprintf(buffer, sizeof(buffer) - 1,
|
||||
"not an sstable (bad magic number --- %#" PRIx64 ")",
|
||||
magic);
|
||||
"not an sstable (bad magic number --- %lx)",
|
||||
(long)magic);
|
||||
return Status::InvalidArgument(buffer);
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user