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:
authorCampbell Barton <ideasman42@gmail.com>2018-12-30 07:14:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-30 07:15:05 +0300
commit543ddbe6bfa8072b4c09ccc9abe27237d3598db5 (patch)
tree3d7ca08c1c16389e803721597817f11c53325523 /source/blender/blenlib/intern/BLI_timer.c
parent266b1e2cdbc19466ac452cc3cb08273d6f37b341 (diff)
Cleanup: warnings (clang)
Diffstat (limited to 'source/blender/blenlib/intern/BLI_timer.c')
-rw-r--r--source/blender/blenlib/intern/BLI_timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/BLI_timer.c b/source/blender/blenlib/intern/BLI_timer.c
index 7bb919d47e0..fdd89771077 100644
--- a/source/blender/blenlib/intern/BLI_timer.c
+++ b/source/blender/blenlib/intern/BLI_timer.c
@@ -50,7 +50,7 @@ typedef struct TimerContainer {
bool file_load_cb_registered;
} TimerContainer;
-static TimerContainer GlobalTimer = { 0 };
+static TimerContainer GlobalTimer = {{0}};
static void ensure_callback_is_registered(void);