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/blenlib/BLI_callbacks.h')
-rw-r--r--source/blender/blenlib/BLI_callbacks.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_callbacks.h b/source/blender/blenlib/BLI_callbacks.h
index bfc336781aa..1e95510f6ec 100644
--- a/source/blender/blenlib/BLI_callbacks.h
+++ b/source/blender/blenlib/BLI_callbacks.h
@@ -56,7 +56,7 @@ typedef enum {
typedef struct {
struct bCallbackFuncStore *next, *prev;
- void (* func)(struct Main *, struct ID *, void *arg);
+ void (*func)(struct Main *, struct ID *, void *arg);
void *arg;
short alloc;
} bCallbackFuncStore;
@@ -70,6 +70,6 @@ void BLI_callback_global_finalize(void);
/* This is blenlib internal only, unrelated to above */
-void callLocalErrorCallBack(const char* msg);
+void callLocalErrorCallBack(const char *msg);
#endif /* __BLI_CALLBACKS_H__ */