From 7d2a67f25818f76800d508d55dcac7c4055cf774 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Sat, 19 Sep 2020 22:38:36 -0500 Subject: [PATCH] Cleanup: Fix clang tidy inconsistent parameter warning --- source/blender/editors/interface/interface_panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);