]> Nishi Git Mirror - gwion.git/commitdiff
:shirt: Fix compiler warning
authorfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 3 Sep 2019 21:07:40 +0000 (23:07 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 3 Sep 2019 21:07:40 +0000 (23:07 +0200)
src/oo/switch.c

index 768f5fdbc2f14f82c0504fa64dbb3762046db297..3d8dc38e8e6dd8ea470110a0614edd15bfca8266 100644 (file)
@@ -176,7 +176,7 @@ ANN m_bool switch_pop(const Env env) {
 
 ANN m_bool switch_end(const Env env, const loc_t pos) {
   const Switch sw = (Switch)_scope_pop(env->scope->swi);
-  map_remove(&env->scope->swi->map, sw->info);
+  map_remove(&env->scope->swi->map, (vtype)sw->info);
   const m_bool empty = !VLEN(sw->cases) && !VLEN(&sw->exp);
   free_switch(env->gwion->mp, sw);
   if(empty)