From e54f70b2cccf3563213bbf7f7995368557a8a182 Mon Sep 17 00:00:00 2001 From: Oleksandr Anyshchenko Date: Wed, 16 Oct 2019 10:36:53 +0300 Subject: [PATCH] Remove unnecessary trailing semicolon --- src/db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.rs b/src/db.rs index bfd9c64..6749d26 100644 --- a/src/db.rs +++ b/src/db.rs @@ -1652,7 +1652,7 @@ impl DB { // rocksdb_wal_readoptions_t does not appear to have any functions // for creating and destroying it; fortunately we can pass a nullptr // 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,)); Ok(DBWALIterator { inner: iter }) }