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:
Zhongyi Xie 2017-11-02 22:12:17 -07:00 committed by Facebook Github Bot
parent 602fe9454c
commit 30e4e01e05

View File

@ -469,7 +469,9 @@ std::string IsFastCrc32Supported() {
if (has_fast_crc) {
fast_zero_msg.append("Supported on " + arch);
}
else {
fast_zero_msg.append("Not supported on " + arch);
}
return fast_zero_msg;
}