[Bf-blender-cvs] [1873497] alembic_basic_io: Fix typo in some previous commit.

Kévin Dietrich noreply at git.blender.org
Fri Jun 3 10:45:14 CEST 2016


Commit: 187349770de0aa57024f2d18258e79ea52367cf4
Author: Kévin Dietrich
Date:   Fri Jun 3 10:04:54 2016 +0200
Branches: alembic_basic_io
https://developer.blender.org/rB187349770de0aa57024f2d18258e79ea52367cf4

Fix typo in some previous commit.

===================================================================

M	source/blender/alembic/intern/alembic_capi.cc

===================================================================

diff --git a/source/blender/alembic/intern/alembic_capi.cc b/source/blender/alembic/intern/alembic_capi.cc
index 2a41e0e..8cfe54f 100644
--- a/source/blender/alembic/intern/alembic_capi.cc
+++ b/source/blender/alembic/intern/alembic_capi.cc
@@ -582,7 +582,7 @@ void ABC_get_transform(Object *ob, const char *filepath, const char *object_path
 
 	IXformSchema schema = ixform.getSchema();
 
-	if (!!schema.valid()) {
+	if (!schema.valid()) {
 		return;
 	}




More information about the Bf-blender-cvs mailing list