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>2021-02-13 09:03:20 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-13 09:40:10 +0300
commit69e9e45744b11c91626869f1ade72a07c296d387 (patch)
treedf18fd4621036d7a93675ac7f63b6ceb5f3575db /source/blender/blenlib/intern
parent2da649cc50b552996bd790dadc27ad1af437800f (diff)
Cleanup: macro hygiene, use parenthesis around operators
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/fileops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/fileops.c b/source/blender/blenlib/intern/fileops.c
index bb218995c83..106bd5bc793 100644
--- a/source/blender/blenlib/intern/fileops.c
+++ b/source/blender/blenlib/intern/fileops.c
@@ -158,7 +158,7 @@ char *BLI_file_ungzip_to_mem(const char *from_file, int *r_size)
return mem;
}
-#define CHUNK 256 * 1024
+#define CHUNK (256 * 1024)
/* gzip byte array from memory and write it to file at certain position.
* return size of gzip stream.