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:
authorRay Molenkamp <github@lazydodo.com>2022-08-17 07:09:58 +0300
committerRay Molenkamp <github@lazydodo.com>2022-08-17 07:09:58 +0300
commit04dba9349d6742cf61160899a02a535605068710 (patch)
tree12374c023004c1dcd55aca441c2ef6f8c565b637 /source/blender/editors/io
parent5fab3bc630f8c0572c8afa7c68f45abe6f2e412f (diff)
Fix: build issue with MSVC
empty initializers are not allowed in C99 introduced by rB2481be90e38d36abc06501c395105fa1833baf1c
Diffstat (limited to 'source/blender/editors/io')
-rw-r--r--source/blender/editors/io/io_alembic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/io/io_alembic.c b/source/blender/editors/io/io_alembic.c
index f04713c2eb9..a7e906b8109 100644
--- a/source/blender/editors/io/io_alembic.c
+++ b/source/blender/editors/io/io_alembic.c
@@ -651,7 +651,7 @@ static int wm_alembic_import_exec(bContext *C, wmOperator *op)
ED_object_mode_set(C, OB_MODE_OBJECT);
}
- struct AlembicImportParams params = {};
+ struct AlembicImportParams params = {0};
params.global_scale = scale;
params.sequence_len = sequence_len;
params.sequence_offset = offset;