diff options
author | Igor Sysoev <igor@sysoev.ru> | 2011-09-14 15:26:11 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2011-09-14 15:26:11 +0000 |
commit | 1fc9a8dec6883bce4f8c68f08408b07560989950 (patch) | |
tree | 66115bc6eb1ebd65195ecb674faf3e97512d235a | |
parent | acdac73688154e4aa618f4bb3824b40790c9d0a4 (diff) | |
download | nginx-1fc9a8dec6883bce4f8c68f08408b07560989950.tar.gz nginx-1fc9a8dec6883bce4f8c68f08408b07560989950.zip |
Style fix.
-rw-r--r-- | src/http/modules/ngx_http_mp4_module.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_mp4_module.c b/src/http/modules/ngx_http_mp4_module.c index c7319f6e1..4761fbc1d 100644 --- a/src/http/modules/ngx_http_mp4_module.c +++ b/src/http/modules/ngx_http_mp4_module.c @@ -1718,7 +1718,8 @@ ngx_http_mp4_read_stsd_atom(ngx_http_mp4_file_t *mp4, uint64_t atom_data_size) ngx_mp4_set_atom_name(stsd_atom, 's', 't', 's', 'd'); if ((uint64_t) (sizeof(ngx_mp4_stsd_atom_t) - sizeof(ngx_mp4_atom_header_t)) - > atom_data_size) { + > atom_data_size) + { ngx_log_error(NGX_LOG_ERR, mp4->file.log, 0, "\"%s\" mp4 stsd atom too large", mp4->file.name.data); |