Change return back to break in the default case.

This commit is contained in:
Clayton Smith
2017-05-12 14:43:12 -04:00
parent 011e0bb0d9
commit bf30b8e8bf
+1 -1
View File
@@ -1026,7 +1026,7 @@ gen_assignment(codegen_scope *s, node *tree, int sp, int val)
#ifndef MRB_DISABLE_STDIO
fprintf(stderr, "unknown lhs %d\n", type);
#endif
return;
break;
}
if (val) push();
}