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:
Diffstat (limited to 'source/blender/imbuf/intern/filetype.c')
-rw-r--r--source/blender/imbuf/intern/filetype.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/imbuf/intern/filetype.c b/source/blender/imbuf/intern/filetype.c
index c03736f4b0a..9ece4bd9f6d 100644
--- a/source/blender/imbuf/intern/filetype.c
+++ b/source/blender/imbuf/intern/filetype.c
@@ -94,8 +94,8 @@ void imb_filetypes_init(void)
{
ImFileType *type;
- for(type=IMB_FILE_TYPES; type->is_a; type++)
- if(type->init)
+ for (type=IMB_FILE_TYPES; type->is_a; type++)
+ if (type->init)
type->init();
}
@@ -103,8 +103,8 @@ void imb_filetypes_exit(void)
{
ImFileType *type;
- for(type=IMB_FILE_TYPES; type->is_a; type++)
- if(type->exit)
+ for (type=IMB_FILE_TYPES; type->is_a; type++)
+ if (type->exit)
type->exit();
}