Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2012-06-26 16:31:40 +0400
committerMaxim Dounin <mdounin@mdounin.ru>2012-06-26 16:31:40 +0400
commita83578384ce4ad5ea99363eeca7888cfa7447e96 (patch)
tree3ba74eb50749ef81fea23cf6c2daf0e71f2c9815
parent835ad6b98bbca64925985a859de87ca123174b2e (diff)
Mp4: fixed build on win32 after r4689.
-rw-r--r--src/http/modules/ngx_http_mp4_module.c2
1 files changed, 1 insertions, 1 deletions
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;
}