Skip to content
Snippets Groups Projects
Commit bb747b26 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Fix cast for clang.

parent d1aa259e
No related branches found
No related tags found
No related merge requests found
......@@ -185,7 +185,7 @@ void
create_uuid(unsigned char *uuid)
{
uint32_t status;
uuid_create((uuid_t *)uuid, &status);
uuid_create((uuid_t *)(void *)uuid, &status);
if (status != uuid_s_ok)
{
perror("uuid generation failed!");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment