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:
authorHarley Acheson <harley.acheson@gmail.com>2020-12-11 21:48:30 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-12-11 21:48:30 +0300
commit92ab76c38ff8f3ed1af5efeba00becbb319b77fb (patch)
treefa386cd985176fdb482c30558c407dfb8119fce9 /source/blender/makesrna/intern/rna_access.c
parent93c67b0b8e20a1da514f2dc7e53bac8506dd3aaa (diff)
Cleanup: clang-format
Forgot to run Make Format on recent spelling changes
Diffstat (limited to 'source/blender/makesrna/intern/rna_access.c')
-rw-r--r--source/blender/makesrna/intern/rna_access.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index 25fe37c2d02..b03df1a82f3 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -1105,8 +1105,11 @@ bool RNA_struct_bl_idname_ok_or_report(ReportList *reports,
const bool failure = false;
#endif
if (p == NULL || p == identifier || p + len_sep >= identifier + len_id) {
- BKE_reportf(
- reports, report_level, "'%s' does not contain '%s' with prefix and suffix", identifier, sep);
+ BKE_reportf(reports,
+ report_level,
+ "'%s' does not contain '%s' with prefix and suffix",
+ identifier,
+ sep);
return failure;
}