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>2011-09-20 21:07:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-20 21:07:33 +0400
commit8cf8fd7326f0961bad2cd633092fccbcadf0cc92 (patch)
treed3ea45fcf0ea4a6a242a5c942a06caf01fac6d55 /source/blender/blenloader/intern
parent9d1b4b63b33b77505f4399a4db4f462f5b1fd1eb (diff)
- translation scripts now run with py3.x
- added convenience make target 'make translations' - some MEM_malloc strings were not unique enough, expanded them.
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 497ac415ebb..c736270533e 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -12224,7 +12224,7 @@ BlendFileData *blo_read_file_internal(FileData *fd, const char *filepath)
BlendFileData *bfd;
bfd= MEM_callocN(sizeof(BlendFileData), "blendfiledata");
- bfd->main= MEM_callocN(sizeof(Main), "main");
+ bfd->main= MEM_callocN(sizeof(Main), "readfile_Main");
BLI_addtail(&fd->mainlist, bfd->main);
bfd->main->versionfile= fd->fileversion;