Fixed comment in BLI_dlrbTree_search_exact

This commit is contained in:
Konrad Kleine 2011-11-17 08:02:36 +00:00
parent db44a92a11
commit 096f7c06b1

@ -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);
}