Merge pull request #2353 from pjsg/fix-rotary

Missed setting the ID into the data block
This commit is contained in:
Terry Ellison 2018-04-13 06:31:09 +01:00 committed by GitHub
commit 4c3d501b58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -152,6 +152,8 @@ static int lrotary_setup( lua_State* L )
DATA *d = data[id];
memset(d, 0, sizeof(*d));
d->id = id;
os_timer_setfn(&d->timer, lrotary_timer_done, (void *) d);
int i;