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>2011-03-29 08:16:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-03-29 08:16:55 +0400
commit6e5ce953da2e7d6e85df7cfd8d6bffd00b740575 (patch)
tree3df0e2e206d2e05ae9ed5f14fc7f2725e1a10c4b /intern/mikktspace
parente72c278f47d27aef76dc6ca976bfcba668dce260 (diff)
use 'is None' rather then '== None' as suggested by python docs & mis-spelling.
Diffstat (limited to 'intern/mikktspace')
-rw-r--r--intern/mikktspace/mikktspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/mikktspace/mikktspace.c b/intern/mikktspace/mikktspace.c
index e997bafde25..c05ada84773 100644
--- a/intern/mikktspace/mikktspace.c
+++ b/intern/mikktspace/mikktspace.c
@@ -645,7 +645,7 @@ void MergeVertsFast(int piTriList_in_and_out[], STmpVert pTmpVert[], const SMikk
int iL=iL_in, iR=iR_in;
assert((iR_in-iL_in)>0); // at least 2 entries
- // seperate (by fSep) all points between iL_in and iR_in in pTmpVert[]
+ // separate (by fSep) all points between iL_in and iR_in in pTmpVert[]
while(iL < iR)
{
tbool bReadyLeftSwap = TFALSE, bReadyRightSwap = TFALSE;