ObjFW  Diff

Differences From Artifact [0c53071c1e]:

To Artifact [4edf9604c8]:


126
127
128
129
130
131
132
133
134
135
136
137

		if (OFPlainMutexUnlock(&mutex) != 0)
			OBJC_ERROR("Failed to unlock mutex!");

		return 0;
	}

	OBJC_ERROR("objc_sync_exit() was called for an object not locked!");
#else
	return 0;
#endif
}







|




126
127
128
129
130
131
132
133
134
135
136
137

		if (OFPlainMutexUnlock(&mutex) != 0)
			OBJC_ERROR("Failed to unlock mutex!");

		return 0;
	}

	OBJC_ERROR("objc_sync_exit() was called for an unlocked object!");
#else
	return 0;
#endif
}