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>2012-06-08 09:53:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-08 09:53:30 +0400
commit26ca0008ee8081dfcd2e894613dc87c5b5f52c72 (patch)
tree17054fdac402cf7a4b507f65adf366e6c60ac054 /intern/guardedalloc
parenta6f3e15d6ec95e9649c08f50b41385ea293275e2 (diff)
typo/style edits
Diffstat (limited to 'intern/guardedalloc')
-rw-r--r--intern/guardedalloc/intern/mallocn.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/intern/guardedalloc/intern/mallocn.c b/intern/guardedalloc/intern/mallocn.c
index 4a30388c047..f1a83583715 100644
--- a/intern/guardedalloc/intern/mallocn.c
+++ b/intern/guardedalloc/intern/mallocn.c
@@ -683,8 +683,8 @@ static void addtail(volatile localListBase *listbase, void *vlink)
{
struct localLink *link = vlink;
- /* for a generic API general error checks here is fine but
- * the use here they will never be NULL */
+ /* for a generic API error checks here is fine but
+ * the limited use here they will never be NULL */
#if 0
if (link == NULL) return;
if (listbase == NULL) return;
@@ -702,8 +702,8 @@ static void remlink(volatile localListBase *listbase, void *vlink)
{
struct localLink *link = vlink;
- /* for a generic API general error checks here is fine but
- * the use here they will never be NULL */
+ /* for a generic API error checks here is fine but
+ * the limited use here they will never be NULL */
#if 0
if (link == NULL) return;
if (listbase == NULL) return;