vp8mt_alloc_temp_buffers: make prototype return void
authorJohn Koleszar <jkoleszar@google.com>
Wed, 17 Nov 2010 14:13:54 +0000 (09:13 -0500)
committerJohn Koleszar <jkoleszar@google.com>
Wed, 17 Nov 2010 14:13:57 +0000 (09:13 -0500)
commit8d94796cad01141aab56caec4bd0411c172c2069
tree02e600284df81e1497ddcec37203faf5c3a0c31c
parent79e2b1f39b9bb79a64543935e3616bf8abf7dcd8
vp8mt_alloc_temp_buffers: make prototype return void

This function was never called in a context expecting a return value,
the return value was always a constant, and the !CONFIG_MULTITHREAD
path didn't have a return statement, which caused a compiler warning.
This patch changes the function to return void instead.

Fixes issue #231

Change-Id: I9ef7f56e54418b7265026c54fc4ed5660c1418d1
vp8/decoder/decoderthreading.h
vp8/decoder/threading.c