fix bad arg name

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29769 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2010-02-26 05:43:44 +00:00
parent 3d42c698b8
commit 648c9eb30d

View file

@ -1038,7 +1038,7 @@ protocol_isEqual(Protocol *p, Protocol *other)
const char *
sel_getName(SEL sel)
{
if (name == 0) return "<null selector>";
if (sel == 0) return "<null selector>";
return sel_get_name(sel);
}