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:
authorDaniel Genrich <daniel.genrich@gmx.net>2009-08-20 04:37:27 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2009-08-20 04:37:27 +0400
commit89658db5761516d4c07a2b975e3e6e290cd67cea (patch)
tree0f6b89860292e91012dd5582bd08bd4bf435fdd8
parent286c2ca80be4ae46dc220ada2fcc5bf636d5ff49 (diff)
Fix Smoke #1:
* compile error reported by nudelZ (static/nonstatic)
-rw-r--r--source/blender/blenkernel/intern/smoke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/smoke.c b/source/blender/blenkernel/intern/smoke.c
index 6449ae10eee..9be60a0a975 100644
--- a/source/blender/blenkernel/intern/smoke.c
+++ b/source/blender/blenkernel/intern/smoke.c
@@ -123,7 +123,7 @@ struct DerivedMesh;
struct SmokeModifierData;
// forward declerations
-void get_cell(float *p0, int res[3], float dx, float *pos, int *cell, int correct);
+static void get_cell(float *p0, int res[3], float dx, float *pos, int *cell, int correct);
void calcTriangleDivs(Object *ob, MVert *verts, int numverts, MFace *tris, int numfaces, int numtris, int **tridivs, float cell_len);
void smoke_prepare_View(SmokeModifierData *smd, float framenr, float *light, int have_light);