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>2020-02-13 06:01:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-13 06:14:33 +0300
commitd1bd33407da3183335805beec561c18e6f5aa6e0 (patch)
tree564bd2c8b1d2c99ff3ad9d76628efa3ec04c292b /source/blender/blenkernel/intern/idprop.c
parentf874f6817d1c793da4fd423a3c8bf0e504ebfa4a (diff)
Cleanup: pass const variables
Diffstat (limited to 'source/blender/blenkernel/intern/idprop.c')
-rw-r--r--source/blender/blenkernel/intern/idprop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/idprop.c b/source/blender/blenkernel/intern/idprop.c
index e5b710b3619..33d468dee0f 100644
--- a/source/blender/blenkernel/intern/idprop.c
+++ b/source/blender/blenkernel/intern/idprop.c
@@ -104,7 +104,7 @@ IDProperty *IDP_CopyIDPArray(const IDProperty *array, const int flag)
* which doesn't work here. instead, simply copy the
* contents of the new structure into the array cell,
* then free it. this makes for more maintainable
- * code than simply reimplementing the copy functions
+ * code than simply re-implementing the copy functions
* in this loop.*/
tmp = IDP_CopyProperty_ex(GETPROP(narray, i), flag);
memcpy(GETPROP(narray, i), tmp, sizeof(IDProperty));