From: Francois Gouget fgouget@free.fr
--- dlls/crypt32/tests/store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/crypt32/tests/store.c b/dlls/crypt32/tests/store.c index 20d10a110f9..8809c5048b4 100644 --- a/dlls/crypt32/tests/store.c +++ b/dlls/crypt32/tests/store.c @@ -391,7 +391,7 @@ static void testRegStoreSavedCerts(void) cert1 = CertCreateCertificateContext(X509_ASN_ENCODING, bigCert, sizeof(bigCert)); ok (cert1 != NULL, "Create cert context failed at %ld, %lx\n", i, GetLastError()); ret = CertAddCertificateContextToStore(store, cert1, CERT_STORE_ADD_REPLACE_EXISTING, NULL); - /* Addittional skip per Win7, it allows opening HKLM store, but disallows adding certs */ + /* Additional skip per Win7, it allows opening HKLM store, but disallows adding certs */ err = GetLastError(); if (!ret) {
From: Francois Gouget fgouget@free.fr
--- dlls/dbghelp/msc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c index d4aef183677..56a47ab7dac 100644 --- a/dlls/dbghelp/msc.c +++ b/dlls/dbghelp/msc.c @@ -2276,7 +2276,7 @@ static BOOL codeview_snarf(const struct msc_debug_info* msc_dbg, struct symt_compiland* compiland = NULL; struct location loc;
- /* overwrite compiland name from outter context (if any) */ + /* overwrite compiland name from outer context (if any) */ if (objname) compiland = codeview_new_compiland(msc_dbg, objname); /*
From: Francois Gouget fgouget@free.fr
--- dlls/kernel32/tests/volume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/kernel32/tests/volume.c b/dlls/kernel32/tests/volume.c index eb0b5fec772..5d2d971232f 100644 --- a/dlls/kernel32/tests/volume.c +++ b/dlls/kernel32/tests/volume.c @@ -87,7 +87,7 @@ static void test_query_dos_deviceA(void) for (;;) { if (!*p) break; ret2 = QueryDosDeviceA( p, buffer2, sizeof(buffer2) ); - /* Win10+ exposes security device which requires extra priviledges to be queried. So skip it */ + /* Win10+ exposes the security device which requires extra privileges to be queried. So skip it */ ok(ret2 || broken( !strcmp( p, "MSSECFLTSYS" ) && GetLastError() == ERROR_ACCESS_DENIED ), "QueryDosDeviceA failed to return current mapping for %s, last error %lu\n", p, GetLastError()); p += strlen(p) + 1;
From: Francois Gouget fgouget@free.fr
--- dlls/spoolss/tests/spoolss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/spoolss/tests/spoolss.c b/dlls/spoolss/tests/spoolss.c index ce55cf50220..07af82e56ac 100644 --- a/dlls/spoolss/tests/spoolss.c +++ b/dlls/spoolss/tests/spoolss.c @@ -208,7 +208,7 @@ START_TEST(spoolss) { LPCSTR ptr;
- /* The tests fail on Win7 (see comments in load_function() */ + /* The tests fail on Win7 (see comments in load_functions() */ ptr = load_functions(); if (ptr) { win_skip("%s not found\n", ptr);
From: Francois Gouget fgouget@free.fr
--- dlls/uiautomationcore/uia_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/uiautomationcore/uia_client.c b/dlls/uiautomationcore/uia_client.c index 14f9977a4d6..eb49640a61f 100644 --- a/dlls/uiautomationcore/uia_client.c +++ b/dlls/uiautomationcore/uia_client.c @@ -147,7 +147,7 @@ int uia_compare_safearrays(SAFEARRAY *sa1, SAFEARRAY *sa2, int prop_type)
if (prop_type != UIAutomationType_IntArray) { - FIXME("Array type %#x value comparsion currently unimplemented.\n", prop_type); + FIXME("Array type %#x value comparison currently unimplemented.\n", prop_type); return -1; }
From: Francois Gouget fgouget@free.fr
--- 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);
From: Francois Gouget fgouget@free.fr
--- 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])]
From: Francois Gouget fgouget@free.fr
--- 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())
This merge request was approved by Zebediah Figura.
This merge request was approved by Huw Davies.