Commit 196b1cc7 authored by Bjorn Munch's avatar Bjorn Munch

avoid compilation warning about incomplete switch

parent 3d8a2118
......@@ -5721,6 +5721,8 @@ void do_block(enum block_cmd cmd, struct st_command* command)
case GE_OP:
v.int_val= (v.int_val >= v2.int_val);
break;
case ILLEG_OP:
die("Impossible operator, this cannot happen");
}
v.is_int= TRUE;
......
Markdown is supported
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