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>2018-06-17 18:06:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-17 18:06:07 +0300
commit76c2203f9ca5a9f9feeffd594ce6e997ff97b908 (patch)
tree61559d71a0194a885a940aaa5d4c31cad8abf344 /source/blender/blenloader/intern/undofile.c
parent6fc8a74886a30f89562bb542ef3b24cc64b3208a (diff)
Cleanup: trailing space for blenloader
Diffstat (limited to 'source/blender/blenloader/intern/undofile.c')
-rw-r--r--source/blender/blenloader/intern/undofile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenloader/intern/undofile.c b/source/blender/blenloader/intern/undofile.c
index e1ae267ea11..614a3be559b 100644
--- a/source/blender/blenloader/intern/undofile.c
+++ b/source/blender/blenloader/intern/undofile.c
@@ -64,7 +64,7 @@
void BLO_memfile_free(MemFile *memfile)
{
MemFileChunk *chunk;
-
+
while ((chunk = BLI_pophead(&memfile->chunks))) {
if (chunk->is_identical == false) {
MEM_freeN((void *)chunk->buf);
@@ -79,7 +79,7 @@ void BLO_memfile_free(MemFile *memfile)
void BLO_memfile_merge(MemFile *first, MemFile *second)
{
MemFileChunk *fc, *sc;
-
+
fc = first->chunks.first;
sc = second->chunks.first;
while (fc || sc) {
@@ -92,7 +92,7 @@ void BLO_memfile_merge(MemFile *first, MemFile *second)
if (fc) fc = fc->next;
if (sc) sc = sc->next;
}
-
+
BLO_memfile_free(first);
}