os/FileJournal: remove unused attribute

Clang:
os/FileJournal.h:224:8: warning: private field 'is_bdev' is not used
[-Wunused-private-field]

Signed-off-by: John Spray <john.spray@inktank.com>
This commit is contained in:
John Spray 2014-05-08 11:31:49 +01:00
parent f0231ef364
commit 447335aa08

View File

@ -221,7 +221,6 @@ private:
off64_t max_size;
size_t block_size;
bool is_bdev;
bool directio, aio, force_aio;
bool must_write_header;
off64_t write_pos; // byte where the next entry to be written will go
@ -362,7 +361,7 @@ private:
fn(f),
zero_buf(NULL),
max_size(0), block_size(0),
is_bdev(false), directio(dio), aio(ai), force_aio(faio),
directio(dio), aio(ai), force_aio(faio),
must_write_header(false),
write_pos(0), read_pos(0),
#ifdef HAVE_LIBAIO