Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2020-07-31 13:03:11 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-07-31 13:03:11 +0300
commit627b294317e953ee4e2922a3df243df3b9b1196e (patch)
tree95037569dc235be4ec0b3d5783bff2711c57d4d8 /source/blender/blenlib
parentde68880e792085aaef1372b023c70c363ed025d0 (diff)
Fix build error with clang
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/session_uuid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/session_uuid.c b/source/blender/blenlib/intern/session_uuid.c
index 51d1177a332..a5307684059 100644
--- a/source/blender/blenlib/intern/session_uuid.c
+++ b/source/blender/blenlib/intern/session_uuid.c
@@ -31,7 +31,7 @@ static const SessionUUID global_session_uuid_none = {BLI_SESSION_UUID_NONE};
/* Denotes last used UUID.
* It might eventually overflow, and easiest is to add more bits to it. */
-static SessionUUID global_session_uuid = global_session_uuid_none;
+static SessionUUID global_session_uuid = {BLI_SESSION_UUID_NONE};
SessionUUID BLI_session_uuid_generate(void)
{