From 787042b3af812c51ce10b16fa6751cf457f94e59 Mon Sep 17 00:00:00 2001 From: "Sanford Rockowitz (/shared/home/rock/dot_gitconfig)" Date: Mon, 6 Jan 2025 12:05:07 -0500 Subject: [PATCH] rerrange globals for clarity --- src/ddc/ddc_displays.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ddc/ddc_displays.c b/src/ddc/ddc_displays.c index a623ba45..841dd689 100644 --- a/src/ddc/ddc_displays.c +++ b/src/ddc/ddc_displays.c @@ -83,7 +83,6 @@ static DDCA_Trace_Group TRACE_GROUP = DDCA_TRC_DDC; static GPtrArray * display_open_errors = NULL; // array of Bus_Open_Error -int dispno_max = 0; // highest assigned display number static int ddc_detect_async_threshold = DEFAULT_DDC_CHECK_ASYNC_THRESHOLD; #ifdef ENABLE_USB static bool detect_usb_displays = true; @@ -93,11 +92,11 @@ static bool detect_usb_displays = false; static bool allow_asleep = true; // Externally visible globals: +int dispno_max = 0; // highest assigned display number bool monitor_state_tests = false; bool skip_ddc_checks = false; - // // Utility Functions //