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:
authorSybren A. Stüvel <sybren@blender.org>2020-08-07 18:16:46 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-08-07 18:16:49 +0300
commita9c91ce331102498a40ab84328ccd1390ec98eba (patch)
treec78811a704f7aff767eb14e02a373e9f6bcc0220 /source/blender/blenloader
parent7309ee4df76bb33c598f5b982afd70069519038a (diff)
Cleanup: fixed Clang-Tidy `bugprone-suspicious-string-compare` warnings
No functional changes.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_280.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_280.c b/source/blender/blenloader/intern/versioning_280.c
index 7add20431ad..8bb04f8debf 100644
--- a/source/blender/blenloader/intern/versioning_280.c
+++ b/source/blender/blenloader/intern/versioning_280.c
@@ -1201,7 +1201,7 @@ static void do_version_fcurve_hide_viewport_fix(struct ID *UNUSED(id),
struct FCurve *fcu,
void *UNUSED(user_data))
{
- if (strcmp(fcu->rna_path, "hide")) {
+ if (strcmp(fcu->rna_path, "hide") != 0) {
return;
}