Remove unnecessary trailing semicolon

master
Oleksandr Anyshchenko 5 years ago
parent 2a455de066
commit e54f70b2cc
  1. 2
      src/db.rs

@ -1652,7 +1652,7 @@ impl DB {
// rocksdb_wal_readoptions_t does not appear to have any functions // rocksdb_wal_readoptions_t does not appear to have any functions
// for creating and destroying it; fortunately we can pass a nullptr // for creating and destroying it; fortunately we can pass a nullptr
// here to get the default behavior // here to get the default behavior
let opts: *const ffi::rocksdb_wal_readoptions_t = ptr::null();; let opts: *const ffi::rocksdb_wal_readoptions_t = ptr::null();
let iter = ffi_try!(ffi::rocksdb_get_updates_since(self.inner, seq_number, opts,)); let iter = ffi_try!(ffi::rocksdb_get_updates_since(self.inner, seq_number, opts,));
Ok(DBWALIterator { inner: iter }) Ok(DBWALIterator { inner: iter })
} }

Loading…
Cancel
Save