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:
authorKonrad Kleine <konrad.wilhelm.kleine@gmail.com>2011-11-17 12:02:36 +0400
committerKonrad Kleine <konrad.wilhelm.kleine@gmail.com>2011-11-17 12:02:36 +0400
commit096f7c06b111df6e4ee5370f27921681a56b53b6 (patch)
tree766b2be78f5a304bc3b0ea5cfb6e297308f0d39f /source/blender/blenlib/intern/DLRB_tree.c
parentdb44a92a11bc1dff94f8aa162c19429a1fdafa5f (diff)
Fixed comment in BLI_dlrbTree_search_exact
Diffstat (limited to 'source/blender/blenlib/intern/DLRB_tree.c')
-rw-r--r--source/blender/blenlib/intern/DLRB_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/DLRB_tree.c b/source/blender/blenlib/intern/DLRB_tree.c
index 72743e38d4c..4507d70e339 100644
--- a/source/blender/blenlib/intern/DLRB_tree.c
+++ b/source/blender/blenlib/intern/DLRB_tree.c
@@ -209,7 +209,7 @@ DLRBT_Node *BLI_dlrbTree_search_exact (DLRBT_Tree *tree, DLRBT_Comparator_FP cmp
}
}
- /* return the nearest matching node */
+ /* return the exactly matching node */
return (found == 1) ? (node) : (NULL);
}