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>2013-08-07 07:55:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-07 07:55:21 +0400
commit00b39c4e5b91b4291bb41a0ea1f7413d8aeba9f9 (patch)
tree49140a0bdcbf9c2ffa885ac0d338f071ec09538e /source/blender/editors/uvedit/uvedit_unwrap_ops.c
parent4f29aeeff2cfe1dbe0a12910932c48ee453a6de1 (diff)
code cleanup: more confusion with 0/NULL/false
Diffstat (limited to 'source/blender/editors/uvedit/uvedit_unwrap_ops.c')
-rw-r--r--source/blender/editors/uvedit/uvedit_unwrap_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/uvedit/uvedit_unwrap_ops.c b/source/blender/editors/uvedit/uvedit_unwrap_ops.c
index af6689e3f6d..49505b03a19 100644
--- a/source/blender/editors/uvedit/uvedit_unwrap_ops.c
+++ b/source/blender/editors/uvedit/uvedit_unwrap_ops.c
@@ -362,7 +362,7 @@ static ParamHandle *construct_param_handle_subsurfed(Scene *scene, Object *ob, B
ModifierData *md;
SubsurfModifierData *smd_real;
/* modifier initialization data, will control what type of subdivision will happen*/
- SubsurfModifierData smd = {{0}};
+ SubsurfModifierData smd = {{NULL}};
/* Used to hold subsurfed Mesh */
DerivedMesh *derivedMesh, *initialDerived;
/* holds original indices for subsurfed mesh */