From ec2fd74f4728f9051d0621fb56cae6bc67cce596 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 13 Dec 2016 16:46:04 +0100 Subject: Fix strict warnings on Windows --- source/blender/makesdna/intern/dna_genfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/intern/dna_genfile.c b/source/blender/makesdna/intern/dna_genfile.c index 96085a79eff..181d01e04fc 100644 --- a/source/blender/makesdna/intern/dna_genfile.c +++ b/source/blender/makesdna/intern/dna_genfile.c @@ -169,7 +169,7 @@ void DNA_sdna_free(SDNA *sdna) } MEM_freeN((void *)sdna->names); - MEM_freeN(sdna->types); + MEM_freeN((void *)sdna->types); MEM_freeN(sdna->structs); #ifdef WITH_DNA_GHASH -- cgit v1.2.3