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>2010-12-13 11:44:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-13 11:44:07 +0300
commit02ec64ca46b277175a35e8289c5b6e10d44ff275 (patch)
treedbc7699922fe167291fab3ad4b0019c8b3725107 /source/blender/makesrna/intern/rna_lattice.c
parentd09bc78e6b39ce78791517de2cb99b664e9c8e53 (diff)
fix for error in recent commit.
Diffstat (limited to 'source/blender/makesrna/intern/rna_lattice.c')
-rw-r--r--source/blender/makesrna/intern/rna_lattice.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_lattice.c b/source/blender/makesrna/intern/rna_lattice.c
index 1678201dec2..3285ed4e392 100644
--- a/source/blender/makesrna/intern/rna_lattice.c
+++ b/source/blender/makesrna/intern/rna_lattice.c
@@ -202,9 +202,8 @@ static char *rna_LatticePoint_path(PointerRNA *ptr)
return BLI_sprintfN("points[%d]", pt_index);
}
}
- else {
- return BLI_strdup("");
- }
+
+ return BLI_strdup("");
}