From: Maxim Dounin Date: Tue, 26 Jun 2012 12:31:40 +0000 (+0000) Subject: Mp4: fixed build on win32 after r4689. X-Git-Tag: release-1.3.2~1 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=a83578384ce4ad5ea99363eeca7888cfa7447e96;p=nginx.git Mp4: fixed build on win32 after r4689. --- diff --git a/src/http/modules/ngx_http_mp4_module.c b/src/http/modules/ngx_http_mp4_module.c index eb51ab2dc..d3be23420 100644 --- a/src/http/modules/ngx_http_mp4_module.c +++ b/src/http/modules/ngx_http_mp4_module.c @@ -1024,7 +1024,7 @@ ngx_http_mp4_read_moov_atom(ngx_http_mp4_file_t *mp4, uint64_t atom_data_size) + NGX_HTTP_MP4_MOOV_BUFFER_EXCESS * no_mdat; } - if (ngx_http_mp4_read(mp4, atom_data_size) != NGX_OK) { + if (ngx_http_mp4_read(mp4, (size_t) atom_data_size) != NGX_OK) { return NGX_ERROR; }