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>2018-09-19 03:29:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-19 03:29:57 +0300
commit345c34826296907d85b4b367a830ff4f73ab293f (patch)
tree54d7a03449dc65e7dadc22ebff7541ef1f439165 /source/blender/blenkernel/intern/fcurve.c
parent69aac13524374d62fee5a99139ba74ed535ea767 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/blenkernel/intern/fcurve.c')
-rw-r--r--source/blender/blenkernel/intern/fcurve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c
index 629307d6cc2..bf8d259d59c 100644
--- a/source/blender/blenkernel/intern/fcurve.c
+++ b/source/blender/blenkernel/intern/fcurve.c
@@ -1970,7 +1970,7 @@ static bool driver_compile_simple_expr(ChannelDriver *driver)
/* Store the result if the field is still NULL, or discard
* it if another thread got here first. */
- if (atomic_cas_ptr((void**)&driver->expr_simple, NULL, expr) != NULL) {
+ if (atomic_cas_ptr((void **)&driver->expr_simple, NULL, expr) != NULL) {
BLI_simple_expr_free(expr);
}