Skip to content
Snippets Groups Projects
Commit 029adbf3 authored by Cédric Roux's avatar Cédric Roux
Browse files

bugfix: forget to break and all gets heck!

parent 24af1224
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ static void _event(void *p, event e)
frame = e.e[l->frame_arg].i;
subframe = e.e[l->subframe_arg].i;
switch (e.e[l->data_arg].type) {
case EVENT_INT: value = e.e[l->data_arg].i;
case EVENT_INT: value = e.e[l->data_arg].i; break;
default: printf("%s:%d: unsupported type\n", __FILE__, __LINE__); abort();
}
......
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