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:
authorDaniel Genrich <daniel.genrich@gmx.net>2008-09-12 16:33:55 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2008-09-12 16:33:55 +0400
commit1adc2dce52499ca898984dd00a0cd969ff3a6709 (patch)
tree744f3d49556e56d20366b2470948def45e4c0456 /source/blender/src/sequence.c
parent215828455ac07612e4f2bf47859fc850bda0ef60 (diff)
Correct half of rev16483, which does typecasts which are not nice on Win64 plattform
Diffstat (limited to 'source/blender/src/sequence.c')
-rw-r--r--source/blender/src/sequence.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/src/sequence.c b/source/blender/src/sequence.c
index f64a372436c..5be11a724f1 100644
--- a/source/blender/src/sequence.c
+++ b/source/blender/src/sequence.c
@@ -2958,8 +2958,7 @@ void do_render_seq(RenderResult *rr, int cfra)
max = MEM_CacheLimiter_get_maximum();
if (max != 0 && mem_in_use + mmap_in_use > max) {
- fprintf(stderr, "mem_in_use = %lu, max = %lu\n",
- (long unsigned int)mem_in_use + mmap_in_use, (long unsigned int)max);
+ fprintf(stderr, "Memory in use > maximum memory\n");
fprintf(stderr, "Cleaning up, please wait...\n"
"If this happens very often,\n"
"consider "