Fix error return value in thread_tcache_enabled_ctl().

Reported by Corey Richardson.
This commit is contained in:
Jason Evans 2012-10-08 15:48:04 -07:00
parent 1d553f72cb
commit f4c3f8545b

View File

@ -1032,8 +1032,8 @@ thread_tcache_enabled_ctl(const size_t *mib, size_t miblen, void *oldp,
}
READ(oldval, bool);
label_return:
ret = 0;
label_return:
return (ret);
}