mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-29 09:36:17 +00:00
Minor: fix a format
Summary: A format fixing Test Plan: N/A Reviewers: ljin Reviewed By: ljin Subscribers: leveldb Differential Revision: https://reviews.facebook.net/D21255
This commit is contained in:
parent
7abe9655d3
commit
76dcf7eefd
|
@ -94,7 +94,9 @@ DBPropertyType GetPropertyType(const Slice& property, bool* is_int_property,
|
||||||
Slice prefix("rocksdb.");
|
Slice prefix("rocksdb.");
|
||||||
*need_out_of_mutex = false;
|
*need_out_of_mutex = false;
|
||||||
*is_int_property = false;
|
*is_int_property = false;
|
||||||
if (!in.starts_with(prefix)) return kUnknown;
|
if (!in.starts_with(prefix)) {
|
||||||
|
return kUnknown;
|
||||||
|
}
|
||||||
in.remove_prefix(prefix.size());
|
in.remove_prefix(prefix.size());
|
||||||
|
|
||||||
if (in.starts_with("num-files-at-level")) {
|
if (in.starts_with("num-files-at-level")) {
|
||||||
|
|
Loading…
Reference in a new issue