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-03-21 05:58:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-21 06:00:40 +0300
commit6d97f9a5c1c77d30b4a1939ad81708a44f225280 (patch)
treed80b7a142002751e63a4a59c61219f7f5dc5791f /source/blender/blenlib/intern/BLI_mmap.c
parent4abafa20621ecacb2ad4ba5d44a35959a1f4c6b8 (diff)
Cleanup: use static local variables
Diffstat (limited to 'source/blender/blenlib/intern/BLI_mmap.c')
-rw-r--r--source/blender/blenlib/intern/BLI_mmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/BLI_mmap.c b/source/blender/blenlib/intern/BLI_mmap.c
index 2fd162de22c..71510b62ba1 100644
--- a/source/blender/blenlib/intern/BLI_mmap.c
+++ b/source/blender/blenlib/intern/BLI_mmap.c
@@ -67,7 +67,7 @@ struct BLI_mmap_file {
* handler if one was configured and abort the process otherwise.
*/
-struct error_handler_data {
+static struct error_handler_data {
ListBase open_mmaps;
char configured;
void (*next_handler)(int, siginfo_t *, void *);