From 05f14764e68c5171157e8afdcc1e20ec38a46704 Mon Sep 17 00:00:00 2001 From: apocelipes Date: Mon, 28 Apr 2025 22:50:46 +0800 Subject: [PATCH] Bluetooth (Linux): silence an unused variable warning (#1717) --- src/detection/bluetooth/bluetooth_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detection/bluetooth/bluetooth_linux.c b/src/detection/bluetooth/bluetooth_linux.c index beaaba9b1..ede0bb79d 100644 --- a/src/detection/bluetooth/bluetooth_linux.c +++ b/src/detection/bluetooth/bluetooth_linux.c @@ -232,7 +232,7 @@ static uint32_t connectedDevices(void) #endif -const char* ffDetectBluetooth(FFBluetoothOptions* options, FF_MAYBE_UNUSED FFlist* devices /* FFBluetoothResult */) +const char* ffDetectBluetooth(FF_MAYBE_UNUSED FFBluetoothOptions* options, FF_MAYBE_UNUSED FFlist* devices /* FFBluetoothResult */) { #ifdef FF_HAVE_DBUS int32_t connectedCount = -1;