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>2015-06-23 22:13:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-06-23 22:13:43 +0300
commit40a345a9c75259216c158ec509e756c4d3f19fd5 (patch)
tree48a7c787e2d29bf608f1f6cc350733a853d56d86 /source/blender/imbuf/intern/openexr/openexr_api.cpp
parent04e9a707f4cec2dfd88ac595de29c941f677f3c4 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/imbuf/intern/openexr/openexr_api.cpp')
-rw-r--r--source/blender/imbuf/intern/openexr/openexr_api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/openexr/openexr_api.cpp b/source/blender/imbuf/intern/openexr/openexr_api.cpp
index 72288149846..ba197948f7d 100644
--- a/source/blender/imbuf/intern/openexr/openexr_api.cpp
+++ b/source/blender/imbuf/intern/openexr/openexr_api.cpp
@@ -1082,7 +1082,7 @@ void IMB_exr_write_channels(void *handle)
/* We allocate teporary storage for half pixels for all the channels at once. */
if (data->num_half_channels != 0) {
- rect_half = (half*)MEM_mallocN(sizeof(half) * data->num_half_channels * num_pixels, __func__);
+ rect_half = (half *)MEM_mallocN(sizeof(half) * data->num_half_channels * num_pixels, __func__);
current_rect_half = rect_half;
}