Module: wine
Branch: master
Commit: 9338531ee40785f2237414205f8ba050e640acc1
URL: https://gitlab.winehq.org/wine/wine/-/commit/9338531ee40785f2237414205f8ba0…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Mon Feb 13 18:34:44 2023 +0100
winex11.drv: Fix a typo in a comment.
---
dlls/winex11.drv/window.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c
index 98b0b23e103..17fc6d867f5 100644
--- a/dlls/winex11.drv/window.c
+++ b/dlls/winex11.drv/window.c
@@ -984,7 +984,7 @@ static void update_net_wm_fullscreen_monitors( struct x11drv_win_data *data )
if (!(data->net_wm_state & (1 << NET_WM_STATE_FULLSCREEN)) || is_virtual_desktop())
return;
- /* If the current display device handler can not detect dynamic device changes, do not use
+ /* If the current display device handler cannot detect dynamic device changes, do not use
* _NET_WM_FULLSCREEN_MONITORS because xinerama_get_fullscreen_monitors() may report wrong
* indices because of stale xinerama monitor information */
if (!X11DRV_DisplayDevices_SupportEventHandlers())
Module: wine
Branch: master
Commit: 96c8d383603d508468bd574f58a05a66395e4e80
URL: https://gitlab.winehq.org/wine/wine/-/commit/96c8d383603d508468bd574f58a05a…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Mon Feb 13 18:34:22 2023 +0100
winevulkan: Fix a typo in a comment.
---
dlls/winevulkan/make_vulkan | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winevulkan/make_vulkan b/dlls/winevulkan/make_vulkan
index 41a70717674..24006a3f5f4 100755
--- a/dlls/winevulkan/make_vulkan
+++ b/dlls/winevulkan/make_vulkan
@@ -1168,7 +1168,7 @@ class VkVariable(object):
parent = self.parent
len = prefix
- # check if lenght is a member of another struct (for example pAllocateInfo->commandBufferCount)
+ # check if length is a member of another struct (for example pAllocateInfo->commandBufferCount)
i = len_str.find("->")
if i != -1:
var = parent[parent.index(len_str[0:i])]
Module: wine
Branch: master
Commit: a72415ce5df8a9bdd877c50db423875dafa31c3e
URL: https://gitlab.winehq.org/wine/wine/-/commit/a72415ce5df8a9bdd877c50db42387…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Mon Feb 13 18:33:48 2023 +0100
winegstreamer: Fix a typo in a comment.
---
dlls/winegstreamer/wg_parser.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winegstreamer/wg_parser.c b/dlls/winegstreamer/wg_parser.c
index 32ac4a2830d..5bb824f4399 100644
--- a/dlls/winegstreamer/wg_parser.c
+++ b/dlls/winegstreamer/wg_parser.c
@@ -1411,7 +1411,7 @@ static NTSTATUS wg_parser_connect(void *args)
struct wg_parser_stream *stream = parser->streams[i];
gint64 duration;
- /* If we receieved a buffer waiting for tags or caps does not make sense anymore. */
+ /* If we received a buffer, waiting for tags or caps does not make sense anymore. */
while ((!stream->has_caps || !stream->has_tags) && !parser->error && !stream->has_buffer)
pthread_cond_wait(&parser->init_cond, &parser->mutex);