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-04-07 16:37:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-07 16:37:15 +0400
commit8fa17c5362a09d023bda999d4595f1762e5f52b9 (patch)
tree6d380e3f336e2740a24eead833501384df658fdd /source/blender/blenlib/intern/BLI_dynstr.c
parent6482351ed9c3e022e02933709e4df1407a2ffbef (diff)
code cleanup: no functional changes
- memset(..., -1) is used incorrectly even though it worked: MOD_solidify.c - thanks Halley from IRC for noticing this. use fill_vn_i() instead. - quiet warnings in editmesh_slide.c - cleanup comments in bmesh and some other minor comment additions.
Diffstat (limited to 'source/blender/blenlib/intern/BLI_dynstr.c')
-rw-r--r--source/blender/blenlib/intern/BLI_dynstr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/BLI_dynstr.c b/source/blender/blenlib/intern/BLI_dynstr.c
index ed049a573d9..54d9bc5f16d 100644
--- a/source/blender/blenlib/intern/BLI_dynstr.c
+++ b/source/blender/blenlib/intern/BLI_dynstr.c
@@ -150,7 +150,7 @@ void BLI_dynstr_vappendf(DynStr *ds, const char *format, va_list args)
MEM_freeN(message);
message= NULL;
- /* retval doesnt include \0 terminator */
+ /* retval doesn't include \0 terminator */
len= retval + 1;
}
else
@@ -206,7 +206,7 @@ void BLI_dynstr_appendf(DynStr *ds, const char *format, ...)
MEM_freeN(message);
message= NULL;
- /* retval doesnt include \0 terminator */
+ /* retval doesn't include \0 terminator */
len= retval + 1;
}
else