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
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/mball.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mball.c b/source/blender/blenkernel/intern/mball.c
index dc4a17849fe..393d8e296e8 100644
--- a/source/blender/blenkernel/intern/mball.c
+++ b/source/blender/blenkernel/intern/mball.c
@@ -41,6 +41,7 @@
#include <string.h>
#include <math.h>
#include <stdlib.h>
+#include <ctype.h>
#include "MEM_guardedalloc.h"
#include "DNA_material_types.h"
@@ -88,7 +89,6 @@ void unlink_mball(MetaBall *mb)
/* do not free mball itself */
void free_mball(MetaBall *mb)
{
- MetaElem *ml;
unlink_mball(mb);
if(mb->mat) MEM_freeN(mb->mat);