Skip to content

Commit

Permalink
Fix compiler warning->error under Python 3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Mar 17, 2014
1 parent 321e5a4 commit 7e8338c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zope/container/_zope_container_contained.c
Expand Up @@ -297,15 +297,15 @@ MOD_INIT(_zope_container_contained)
{
PyObject *m;

MOD_DEF(m, "_zope_container_contained", module___doc__, module_functions);

str_p_deactivate = MAKE_PYSTRING("_p_deactivate");
if (str_p_deactivate == NULL)
return MOD_ERROR_VAL;

/* Try to fake out compiler nag function */
if (0) init_zope_proxy_proxy();

MOD_DEF(m, "_zope_container_contained", module___doc__, module_functions);

if (m == NULL)
return MOD_ERROR_VAL;

Expand Down

0 comments on commit 7e8338c

Please sign in to comment.