add missing else
Summary: Closes https://github.com/facebook/rocksdb/pull/3121 Differential Revision: D6229415 Pulled By: miasantreble fbshipit-source-id: 57c7ad2fddf5dd6b8d7e3aaf6f62348151327dfb
This commit is contained in:
parent
602fe9454c
commit
30e4e01e05
@ -469,7 +469,9 @@ std::string IsFastCrc32Supported() {
|
|||||||
if (has_fast_crc) {
|
if (has_fast_crc) {
|
||||||
fast_zero_msg.append("Supported on " + arch);
|
fast_zero_msg.append("Supported on " + arch);
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
fast_zero_msg.append("Not supported on " + arch);
|
fast_zero_msg.append("Not supported on " + arch);
|
||||||
|
}
|
||||||
return fast_zero_msg;
|
return fast_zero_msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user