Merge "cosmetics & warnings"

This commit is contained in:
pascal massimino
2012-01-30 22:04:11 -08:00
committed by Gerrit Code Review
18 changed files with 280 additions and 299 deletions

View File

@ -42,7 +42,7 @@ int VP8InitIoInternal(VP8Io* const io, int version) {
}
VP8Decoder* VP8New(void) {
VP8Decoder* dec = (VP8Decoder*)calloc(1, sizeof(VP8Decoder));
VP8Decoder* const dec = (VP8Decoder*)calloc(1, sizeof(VP8Decoder));
if (dec) {
SetOk(dec);
WebPWorkerInit(&dec->worker_);