Merge pull request #2671 from uploadcare/fix-compilation-warning

Fix compilation warning
This commit is contained in:
Alexander Karpinsky 2017-08-11 19:59:07 +03:00 committed by GitHub
commit 5f5ac09158

View File

@ -247,7 +247,7 @@ PyObject* WebPDecoderVersion_wrapper(PyObject* self, PyObject* args){
* The version of webp that ships with (0.1.3) Ubuntu 12.04 doesn't handle alpha well.
* Files that are valid with 0.3 are reported as being invalid.
*/
int WebPDecoderBuggyAlpha() {
int WebPDecoderBuggyAlpha(void) {
return WebPGetDecoderVersion()==0x0103;
}