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:
authorHans Goudey <h.goudey@me.com>2020-09-20 06:38:36 +0300
committerHans Goudey <h.goudey@me.com>2020-09-20 06:38:36 +0300
commit7d2a67f25818f76800d508d55dcac7c4055cf774 (patch)
tree9d1e933f6f047943d4a8c64c84a4a791e740dced /source/blender/editors
parent1d5b191f9f99e0da05ccc99ad61064b6c87a6b7d (diff)
Cleanup: Fix clang tidy inconsistent parameter warning
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/interface/interface_panel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_panel.c b/source/blender/editors/interface/interface_panel.c
index a2b9f388759..483e8f8c7c9 100644
--- a/source/blender/editors/interface/interface_panel.c
+++ b/source/blender/editors/interface/interface_panel.c
@@ -118,7 +118,7 @@ typedef struct PanelSort {
static int get_panel_real_size_y(const Panel *panel);
static void panel_activate_state(const bContext *C, Panel *panel, uiHandlePanelState state);
-static int compare_panel(const void *a1, const void *a2);
+static int compare_panel(const void *a, const void *b);
static bool panel_type_context_poll(ARegion *region,
const PanelType *panel_type,
const char *context);