Skip to content
Snippets Groups Projects
Verified Commit e2d602d3 authored by Tomas Krizek's avatar Tomas Krizek Committed by Vladimír Čunát
Browse files

daemon/engine: avoid unused variable with DNDEBUG

parent e7f9603d
Branches
Tags
1 merge request!774warning fixes
......@@ -650,7 +650,7 @@ static void init_measurement(struct engine *engine)
"})\n"
"jit.off()\n", statspath
);
assert(ret > 0);
assert(ret > 0); (void)ret;
ret = luaL_loadstring(engine->L, snippet);
assert(ret == 0);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment