Merge pull request #10 from gunyarakun/fix-invalid-return

fix invalid return statement
This commit is contained in:
Christopher Lloyd 2015-11-05 20:22:36 -05:00
commit 9cda7d7194

View File

@ -12,7 +12,7 @@ objc_exception_frame *NSThreadCurrentHandler(void) {
}
void NSThreadSetCurrentHandler(objc_exception_frame *handler) {
return objc_tlsCurrent()->exception_frame = handler;
objc_tlsCurrent()->exception_frame = handler;
}
NSUncaughtExceptionHandler *NSThreadUncaughtExceptionHandler(void) {