[Bf-blender-cvs] [53ca638f2b7] master: Cleanup: Clang Tidy, readability-inconsistent-declaration-parameter-name

Sybren A. Stüvel noreply at git.blender.org
Mon Sep 7 18:11:07 CEST 2020


Commit: 53ca638f2b738af644661bd4fabcf7e3fdf6e73b
Author: Sybren A. Stüvel
Date:   Mon Sep 7 18:09:09 2020 +0200
Branches: master
https://developer.blender.org/rB53ca638f2b738af644661bd4fabcf7e3fdf6e73b

Cleanup: Clang Tidy, readability-inconsistent-declaration-parameter-name

No functional changes.

===================================================================

M	source/blender/python/intern/bpy_rna.c

===================================================================

diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index cc981c7c2e1..0980d9df762 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -219,10 +219,10 @@ static void value_id_set(void *id)
 }
 
 static void id_release_weakref_list(struct ID *id, GHash *weakinfo_hash);
-static PyObject *id_free_weakref_cb(PyObject *weakinfo_capsule, PyObject *weakref)
+static PyObject *id_free_weakref_cb(PyObject *weakinfo_pair, PyObject *weakref)
 {
   /* Important to search backwards. */
-  GHash *weakinfo_hash = PyCapsule_GetPointer(weakinfo_capsule, NULL);
+  GHash *weakinfo_hash = PyCapsule_GetPointer(weakinfo_pair, NULL);
 
   if (BLI_ghash_len(weakinfo_hash) > 1) {
     BLI_ghash_remove(weakinfo_hash, weakref, NULL, NULL);



More information about the Bf-blender-cvs mailing list