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>2016-02-02 03:56:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-02-02 04:40:07 +0300
commit883a20c8e70a8294fa5e68aa26eac896ecaa7c20 (patch)
treeb34a9964ecea86c395929a9946866ba608fc709c /source/blender/blenkernel/intern/image.c
parenta92bdfe0c917d28c82c1cdd120f9985a1b7d6f51 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/blenkernel/intern/image.c')
-rw-r--r--source/blender/blenkernel/intern/image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c
index f22cb025044..05ec54e507d 100644
--- a/source/blender/blenkernel/intern/image.c
+++ b/source/blender/blenkernel/intern/image.c
@@ -1906,7 +1906,7 @@ static void stampdata_from_template(StampData *stamp_data,
else {
stamp_data->frame[0] = '\0';
}
- if(scene->r.stamp & R_STAMP_CAMERA) {
+ if (scene->r.stamp & R_STAMP_CAMERA) {
BLI_snprintf(stamp_data->camera, sizeof(stamp_data->camera), "Camera %s", stamp_data_template->camera);
}
else {
@@ -1925,7 +1925,7 @@ static void stampdata_from_template(StampData *stamp_data,
stamp_data->scene[0] = '\0';
}
if (scene->r.stamp & R_STAMP_SEQSTRIP) {
- BLI_snprintf(stamp_data->strip, sizeof(stamp_data->strip), "Strip %s" , stamp_data_template->strip);
+ BLI_snprintf(stamp_data->strip, sizeof(stamp_data->strip), "Strip %s", stamp_data_template->strip);
}
else {
stamp_data->strip[0] = '\0';