Module: wine Branch: master Commit: 76d6151b73b18553d5fffb1678f7f64027a73404 URL: https://source.winehq.org/git/wine.git/?a=commit;h=76d6151b73b18553d5fffb167...
Author: Francois Gouget fgouget@free.fr Date: Wed Apr 18 03:23:22 2018 +0200
winebus.sys: Fix a typo in a comment.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Aric Stewart aric@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/winebus.sys/bus.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winebus.sys/bus.h b/dlls/winebus.sys/bus.h index 0b37801..bf93c04 100644 --- a/dlls/winebus.sys/bus.h +++ b/dlls/winebus.sys/bus.h @@ -18,7 +18,7 @@
typedef int(*enum_func)(DEVICE_OBJECT *device, void *context);
-/* Busses */ +/* Buses */ NTSTATUS WINAPI udev_driver_init(DRIVER_OBJECT *driver, UNICODE_STRING *registry_path) DECLSPEC_HIDDEN; NTSTATUS WINAPI iohid_driver_init(DRIVER_OBJECT *driver, UNICODE_STRING *registry_path) DECLSPEC_HIDDEN; NTSTATUS WINAPI sdl_driver_init(DRIVER_OBJECT *driver, UNICODE_STRING *registry_path) DECLSPEC_HIDDEN;