Merge pull request #11 from practicalswift/xcode-7-compilation-fix

Fix compilation error under Xcode 7 (clang-700.0.53)
This commit is contained in:
Michael Steil 2015-06-10 13:33:06 -07:00
commit 96c6bbe644

View file

@ -76,7 +76,7 @@ uuid_create_nil(uuid_t *u, uint32_t *status)
}
static void
uuid_enc_le(void *buf, const uuid_t *uuid)
uuid_enc_le(void *buf, uuid_t *uuid)
{
uuid_internal_t *u = (uuid_internal_t *) ((void *) uuid);
uint8_t *p = buf;