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:
authorInes Almeida <britalmeida@gmail.com>2018-10-03 22:56:33 +0300
committerInes Almeida <britalmeida@gmail.com>2018-10-03 22:56:33 +0300
commit77787310ad82e50ea7d1b8c9fc6387eef468d250 (patch)
treef116a9a799c9d6e2e966b50450af7125b5ba2a43 /source/blender/makesrna/intern/rna_define.c
parent5a4ff142de18643e62dbe6dbaf7c7aecb44a7fe7 (diff)
Cleanup: tiny improvement in error reporting for makesrna
Diffstat (limited to 'source/blender/makesrna/intern/rna_define.c')
-rw-r--r--source/blender/makesrna/intern/rna_define.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_define.c b/source/blender/makesrna/intern/rna_define.c
index 4964e94652c..c3c7367283e 100644
--- a/source/blender/makesrna/intern/rna_define.c
+++ b/source/blender/makesrna/intern/rna_define.c
@@ -1878,7 +1878,7 @@ static PropertyDefRNA *rna_def_property_sdna(PropertyRNA *prop, const char *stru
return dp;
}
else {
- fprintf(stderr, "%s: \"%s.%s\" (identifier \"%s\") not found.\n",
+ fprintf(stderr, "%s: \"%s.%s\" (identifier \"%s\") not found. Struct must be in DNA.\n",
__func__, structname, propname, prop->identifier);
DefRNA.error = 1;
return NULL;