fix refcount typo

svn: r12061
This commit is contained in:
Matthew Flatt 2008-10-18 16:41:18 +00:00
parent 02fbdf09b1
commit c73be48400

View File

@ -240,7 +240,7 @@ static int dec_refcount(int *refcount)
{
if (!refcount)
return 0;
*refcont -= 1;
*refcount -= 1;
return *refcount;
}