Update ngx_rtmp_play_module.c

This commit is contained in:
itpp16 2015-04-09 12:58:46 +02:00
parent 6ce821727d
commit 48983747d3

View file

@ -292,9 +292,9 @@ ngx_rtmp_play_send(ngx_event_t *e)
"play: send buffer full");
#if (nginx_version >= 1007012)
ngx_post_event(e, (ngx_queue_t *) &s->posted_dry_events); // #ngxw
ngx_post_event(e, (ngx_queue_t *) &s->posted_dry_events);
#else
ngx_post_event(e, &s->posted_dry_events); // #ngxw
ngx_post_event(e, &s->posted_dry_events);
#endif
return;
}