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>2014-06-26 09:46:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-06-26 09:46:42 +0400
commita4d9c8f579a4ba2b66f2f5b8b7bbd6be9c1d4cda (patch)
tree7025cc2659b74b550743f67d9b4d11521f6a8978 /source/creator
parente3e56971ebe494ac499675f00bd891f2d9cadaa3 (diff)
Code cleanup: casts, dead assignment & arg order.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index b42c5333d11..70e6aba8274 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -535,7 +535,7 @@ static void blender_crash_handler_backtrace(FILE *fp)
SymInitialize(process, NULL, true);
nframes = CaptureStackBackTrace(0, SIZE, stack, NULL);
- symbolinfo = MEM_callocN(sizeof(SYMBOL_INFO) + MAXSYMBOL * sizeof( char ), "crash Symbol table");
+ symbolinfo = MEM_callocN(sizeof(SYMBOL_INFO) + MAXSYMBOL * sizeof(char), "crash Symbol table");
symbolinfo->MaxNameLen = MAXSYMBOL - 1;
symbolinfo->SizeOfStruct = sizeof(SYMBOL_INFO);