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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-09-01 05:13:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-01 05:13:50 +0400
commita22dc764bbb68bf05ddfd567c27229fbf1a63271 (patch)
tree084336bfddbae67db67940998f2275a57302cec1 /source
parent22676a434efdb99e38535b2f4a2623ea670ebf4d (diff)
fix for error in patch from r39821.
Diffstat (limited to 'source')
-rw-r--r--source/blender/render/intern/source/pipeline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/render/intern/source/pipeline.c b/source/blender/render/intern/source/pipeline.c
index 24c55332bff..68190014041 100644
--- a/source/blender/render/intern/source/pipeline.c
+++ b/source/blender/render/intern/source/pipeline.c
@@ -174,7 +174,7 @@ static void stats_background(void *UNUSED(arg), RenderStats *rs)
fprintf(stdout, "Sce: %s Ve:%d Fa:%d La:%d", rs->scenename, rs->totvert, rs->totface, rs->totlamp);
}
- BLI_exec_cb(rs, (ID *)rs, BLI_CB_EVT_RENDER_STATS);
+ BLI_exec_cb(G.main, NULL, BLI_CB_EVT_RENDER_STATS);
fputc('\n', stdout);
fflush(stdout);