From af5cfa7544cb53c20a88bc880606e91164859239 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 23 Feb 2019 19:16:28 +1100 Subject: Cleanup: quiet undeclared variable warning --- source/blender/makesdna/intern/makesdna.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/blender/makesdna/intern') diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c index 1607e5e15a7..cd38ba1cb21 100644 --- a/source/blender/makesdna/intern/makesdna.c +++ b/source/blender/makesdna/intern/makesdna.c @@ -141,7 +141,7 @@ static const char *includefiles[] = { /** \name Variables * \{ */ -MemArena *mem_arena = NULL; +static MemArena *mem_arena = NULL; static int maxdata = 500000, maxnr = 50000; static int nr_names = 0; @@ -1349,6 +1349,7 @@ int main(int argc, char **argv) baseDirectory = BASE_HEADER; } + fprintf(file_dna, "extern const unsigned char DNAstr[];\n"); fprintf(file_dna, "const unsigned char DNAstr[] = {\n"); if (make_structDNA(baseDirectory, file_dna, file_dna_offsets)) { /* error */ @@ -1359,6 +1360,7 @@ int main(int argc, char **argv) } else { fprintf(file_dna, "};\n"); + fprintf(file_dna, "extern const int DNAlen;\n"); fprintf(file_dna, "const int DNAlen = sizeof(DNAstr);\n"); } } -- cgit v1.2.3