Remove text from asserts

This commit is contained in:
2025-05-05 19:29:44 +01:00
parent be30189d15
commit 175f627f93
9 changed files with 30 additions and 30 deletions

View File

@@ -18,7 +18,7 @@ internal UUID4 generate_uuid4(void);
internal void uuid4_to_uuid(const UUID4* uuid4, UUID *uuid);
UUID *wapp_uuid_init_uuid4(UUID *uuid) {
assert(uuid != NULL && "uuid argument shouldn't be NULL");
assert(uuid != NULL);
UUID4 uuid4 = generate_uuid4();
uuid4_to_uuid(&uuid4, uuid);