cosmetic fix

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1125 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2003-12-29 19:11:48 +00:00
parent c4c9087ebd
commit 02f42652fe
2 changed files with 6 additions and 2 deletions

View file

@ -1867,6 +1867,8 @@ static PyMethodDef htmlsax_methods[] = {
/* initialization of the htmlsaxhtmlop module */
void inithtmlsax(void) {
Py_InitModule("htmlsax", htmlsax_methods);
if (!Py_InitModule("htmlsax", htmlsax_methods)) {
return;
}
}

View file

@ -664,5 +664,7 @@ static PyMethodDef htmlsax_methods[] = {
/* initialization of the htmlsaxhtmlop module */
void inithtmlsax(void) {
Py_InitModule("htmlsax", htmlsax_methods);
if (!Py_InitModule("htmlsax", htmlsax_methods)) {
return;
}
}