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:
authorBastien Montagne <bastien@blender.org>2020-06-30 12:12:09 +0300
committerBastien Montagne <bastien@blender.org>2020-06-30 13:19:11 +0300
commit737b0fd762f16660d340ad8f33e1accf725f600d (patch)
treefa947b4f09a17007ed951fc6e0a439c8d17dd346 /source/blender/makesrna
parent906d93110ed581d65d1030d8d18b0aab45d18e05 (diff)
Cleanup: Use unsigned int when for enum values, instead of signed int.
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_access_compare_override.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_access_compare_override.c b/source/blender/makesrna/intern/rna_access_compare_override.c
index cc4daf017eb..f7ce296bbc4 100644
--- a/source/blender/makesrna/intern/rna_access_compare_override.c
+++ b/source/blender/makesrna/intern/rna_access_compare_override.c
@@ -1150,7 +1150,7 @@ eRNAOverrideStatus RNA_property_override_library_status(PointerRNA *ptr,
PropertyRNA *prop,
const int index)
{
- int override_status = 0;
+ uint override_status = 0;
if (!BKE_lib_override_library_is_enabled()) {
return override_status;