Skip to content
Snippets Groups Projects
Commit 1b83012f authored by Georgy Kirichenko's avatar Georgy Kirichenko
Browse files

Unused variable in release mode.

parent a6aa47c4
No related merge requests found
......@@ -180,6 +180,7 @@ vinyl_replace_one(struct space *space, struct request *request,
struct vinyl_tx *tx)
{
VinylEngine *engine = (VinylEngine *)space->handler->engine;
(void) engine;
assert((request->type == IPROTO_REPLACE) ||
(!engine->recovery_complete));
assert(space->index_count == 1);
......@@ -193,6 +194,7 @@ vinyl_replace_all(struct space *space, struct request *request,
struct vinyl_tx *tx)
{
VinylEngine *engine = (VinylEngine *)space->handler->engine;
(void) engine;
assert((request->type == IPROTO_REPLACE) ||
(!engine->recovery_complete));
struct tuple *old_tuple;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment