Fix gcc warning 'value computed is not used'

This commit is contained in:
Sergey Dryabzhinsky 2015-10-27 16:43:06 +03:00
parent 74fdeef568
commit cd416d5fd2

View file

@ -379,7 +379,7 @@ ngx_rtmp_dash_write_playlist(ngx_rtmp_session_t *s)
tm.tm_year - 70, tm.tm_mon,
tm.tm_mday - 1, tm.tm_hour,
tm.tm_min, tm.tm_sec,
(ngx_uint_t) ((depth_msec % 1000) / 10));
(ngx_uint_t) ((depth_msec % 1000) / 10)) = 0;
last = buffer + sizeof(buffer);