Merge pull request #189 from manisandro/warning

Fix warning: function declaration isn't a prototype
This commit is contained in:
wiredfool 2013-04-12 15:45:28 -07:00
commit 10568c31df

View File

@ -87,7 +87,7 @@ PyInit__webp(void) {
}
#else
PyMODINIT_FUNC
init_webp()
init_webp(void)
{
Py_InitModule("_webp", webpMethods);
}