Squash warning: variable ‘exc’ set but not used

This commit is contained in:
Michael Drake 2015-12-20 13:44:28 +00:00
parent dbbf4ad648
commit 01953378ac

View File

@ -250,6 +250,7 @@ method Node::normalize()
%{ %{
dom_exception exc; dom_exception exc;
exc = dom_node_normalize(priv->node); exc = dom_node_normalize(priv->node);
if (exc != DOM_NO_ERR) return 0;
return 0; return 0;
%} %}