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:
authorThomas Dinges <blender@dingto.org>2010-09-02 01:06:25 +0400
committerThomas Dinges <blender@dingto.org>2010-09-02 01:06:25 +0400
commitdda1db08ee4817e44b2c3744ba825bf7d675be91 (patch)
treebfb72f95b9fa57f021f0a1a56a2b44f4262da260 /source/blender/imbuf/intern
parentc4895719af377612c3e42c9de01a55629bde1c6b (diff)
Spell fix, reported by troy_s in IRC.
Diffstat (limited to 'source/blender/imbuf/intern')
-rw-r--r--source/blender/imbuf/intern/scaling.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/scaling.c b/source/blender/imbuf/intern/scaling.c
index f26eec51b03..0b8dea01ada 100644
--- a/source/blender/imbuf/intern/scaling.c
+++ b/source/blender/imbuf/intern/scaling.c
@@ -960,7 +960,7 @@ static struct ImBuf *scaledowny(struct ImBuf *ibuf, int newy)
}
if (ibuf->rect_float) {
do_float = 1;
- _newrectf = MEM_mallocN(newy * ibuf->x * sizeof(float) * 4, "scaldownyf");
+ _newrectf = MEM_mallocN(newy * ibuf->x * sizeof(float) * 4, "scaledownyf");
if (_newrectf==NULL) {
if (_newrect) MEM_freeN(_newrect);
return(ibuf);