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>2017-08-09 13:24:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-08-09 13:24:51 +0300
commitb5e6a21f1dbd76f3ea72932c4e764338f926f79f (patch)
treee8a9fbf4cdb6ab5a36c06d6bfe1021be76d6cb9b /source/blender/blenlib/intern/BLI_memiter.c
parent3f644682b01490667fbbc3760304749199ce0ab8 (diff)
Cleanup: Quiet warning
Diffstat (limited to 'source/blender/blenlib/intern/BLI_memiter.c')
-rw-r--r--source/blender/blenlib/intern/BLI_memiter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/BLI_memiter.c b/source/blender/blenlib/intern/BLI_memiter.c
index c86c26f578a..6befdbc54c4 100644
--- a/source/blender/blenlib/intern/BLI_memiter.c
+++ b/source/blender/blenlib/intern/BLI_memiter.c
@@ -147,7 +147,7 @@ BLI_memiter *BLI_memiter_create(uint chunk_size_min)
chunk_size_min -= slop_space;
}
- mi->chunk_size_in_bytes_min = (offset_t)chunk_size_min;
+ mi->chunk_size_in_bytes_min = chunk_size_min;
return mi;
}