make find_clones() static

only used inside the same source file, so better make it static,
so we also get rid of missing prototype warning.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-08-04 13:27:20 +02:00
committed by Joseph Crowell
parent 2248d5b1b2
commit 7d87cd5b64

View File

@@ -2689,7 +2689,7 @@ out_free_encoders:
return 0;
}
uint32_t find_clones(ScrnInfoPtr scrn, xf86OutputPtr output)
static uint32_t find_clones(ScrnInfoPtr scrn, xf86OutputPtr output)
{
drmmode_output_private_ptr drmmode_output =
output->driver_private, clone_drmout;