[Bf-blender-cvs] [d658ea1] master: Cleanup: style

Campbell Barton noreply at git.blender.org
Sun Nov 2 00:10:21 CET 2014


Commit: d658ea1b209fe45b82bbbff1515f797659c3b022
Author: Campbell Barton
Date:   Sat Nov 1 14:31:09 2014 +0100
Branches: master
https://developer.blender.org/rBd658ea1b209fe45b82bbbff1515f797659c3b022

Cleanup: style

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

M	source/blender/blenkernel/intern/tracking_auto.c
M	source/blender/blenkernel/intern/tracking_util.c
M	source/blender/bmesh/operators/bmo_connect_pair.c

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

diff --git a/source/blender/blenkernel/intern/tracking_auto.c b/source/blender/blenkernel/intern/tracking_auto.c
index 1b1445e..55b8f0b 100644
--- a/source/blender/blenkernel/intern/tracking_auto.c
+++ b/source/blender/blenkernel/intern/tracking_auto.c
@@ -55,7 +55,7 @@ typedef struct AutoTrackOptions {
 	bool use_keyframe_match;  /* Keyframe pattern matching. */
 
 	/* TODO(sergey): A bit awkward to keep it in here, only used to
-	 * place a disabled marker once the trackign fails,
+	 * place a disabled marker once the tracking fails,
 	 * Wither find a more clear way to do it or call it track context
 	 * or state, not options.
 	 */
diff --git a/source/blender/blenkernel/intern/tracking_util.c b/source/blender/blenkernel/intern/tracking_util.c
index 505f705..17e4a3c 100644
--- a/source/blender/blenkernel/intern/tracking_util.c
+++ b/source/blender/blenkernel/intern/tracking_util.c
@@ -782,7 +782,7 @@ static ImBuf *accessor_get_ibuf(TrackingImageAccessor *accessor,
 		}
 	}
 
-	/* it's possible processing stil didn't happen at this point,
+	/* it's possible processing still didn't happen at this point,
 	 * but we really need a copy of the buffer to be transformed
 	 * and to be put to the cache.
 	 */
@@ -877,7 +877,7 @@ TrackingImageAccessor *tracking_image_accessor_new(MovieClip *clips[MAX_ACCESSOR
 	                                        accesscache_hashhash,
 	                                        accesscache_hashcmp);
 
-	memcpy(accessor->clips, clips, num_clips * sizeof(MovieClip*));
+	memcpy(accessor->clips, clips, num_clips * sizeof(MovieClip *));
 	accessor->num_clips = num_clips;
 	accessor->start_frame = start_frame;
 
diff --git a/source/blender/bmesh/operators/bmo_connect_pair.c b/source/blender/bmesh/operators/bmo_connect_pair.c
index a0acf6e..cfffb60 100644
--- a/source/blender/bmesh/operators/bmo_connect_pair.c
+++ b/source/blender/bmesh/operators/bmo_connect_pair.c
@@ -82,7 +82,7 @@ typedef struct PathContext {
 typedef struct PathLink {
 	struct PathLink *next;
 	BMElem *ele;       /* edge or vert */
-	BMElem *ele_from;  /* edge or face we game from (not 'next->ele') */
+	BMElem *ele_from;  /* edge or face we came from (not 'next->ele') */
 } PathLink;
 
 typedef struct PathLinkState {




More information about the Bf-blender-cvs mailing list