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/intern
diff options
context:
space:
mode:
authorDaniel Genrich <daniel.genrich@gmx.net>2012-04-30 15:27:06 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2012-04-30 15:27:06 +0400
commit796dd8a321108df26757fb9df5c2aa6eb42c9633 (patch)
treebba8252b03dbe2e2b2ab943e0db5d9be6d2c891b /intern
parent5255c23cb7a4ce63410e92a22ebdb58829c48f1a (diff)
Fix compile error with msvc
Diffstat (limited to 'intern')
-rw-r--r--intern/smoke/intern/smoke_API.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/smoke/intern/smoke_API.cpp b/intern/smoke/intern/smoke_API.cpp
index 78f7d35360a..ce298cff0d2 100644
--- a/intern/smoke/intern/smoke_API.cpp
+++ b/intern/smoke/intern/smoke_API.cpp
@@ -276,7 +276,7 @@ extern "C" unsigned char *smoke_get_obstacle(FLUID_3D *fluid)
return fluid->_obstacles;
}
-extern "C" void smoke_get_ob_velocity(struct FLUID_3D *fluid, float **x, float **y, float **z)
+extern "C" void smoke_get_ob_velocity(FLUID_3D *fluid, float **x, float **y, float **z)
{
*x = fluid->_xVelocityOb;
*y = fluid->_yVelocityOb;