Module: wine Branch: master Commit: 0da7ad35f130a2ea59380dcad2179b972b3a909d URL: https://gitlab.winehq.org/wine/wine/-/commit/0da7ad35f130a2ea59380dcad2179b9...
Author: Paul Gofman pgofman@codeweavers.com Date: Tue Dec 6 09:55:01 2022 -0600
windows.devices.enumeration/tests: Make test handlers structure static.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54085
---
dlls/windows.devices.enumeration/tests/devices.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/windows.devices.enumeration/tests/devices.c b/dlls/windows.devices.enumeration/tests/devices.c index 72bce374410..c65312ea800 100644 --- a/dlls/windows.devices.enumeration/tests/devices.c +++ b/dlls/windows.devices.enumeration/tests/devices.c @@ -139,7 +139,7 @@ static void test_DeviceInformation( void ) { static const WCHAR *device_info_name = L"Windows.Devices.Enumeration.DeviceInformation";
- struct device_watcher_handler stopped_handler, added_handler; + static struct device_watcher_handler stopped_handler, added_handler; EventRegistrationToken stopped_token, added_token; IInspectable *inspectable, *inspectable2; IActivationFactory *factory;