From 61a045b7d30311b7524b5c40ffb33ef15a53dd0a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 8 Aug 2020 12:14:52 +1000 Subject: Clenup: use STREQ macro --- source/blender/blenloader/intern/versioning_280.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenloader') diff --git a/source/blender/blenloader/intern/versioning_280.c b/source/blender/blenloader/intern/versioning_280.c index 4222df27cb7..5127bdcb77b 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") != 0) { + if (!STREQ(fcu->rna_path, "hide")) { return; } -- cgit v1.2.3