Module: wine
Branch: master
Commit: e49526e65225f84bd5b7fe5a7303b60222b35a61
URL: https://source.winehq.org/git/wine.git/?a=commit;h=e49526e65225f84bd5b7fe5a…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Thu Aug 8 15:23:58 2019 +0200
msvcrt: A spelling fix in a comment.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
include/msvcrt/stdint.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/msvcrt/stdint.h b/include/msvcrt/stdint.h
index d228071..7ecdb23 100644
--- a/include/msvcrt/stdint.h
+++ b/include/msvcrt/stdint.h
@@ -177,7 +177,7 @@ typedef unsigned long long uintmax_t;
/* 7.18.4.1 Macros for minimum-width integer constants
- Accoding to Douglas Gwyn <gwyn(a)arl.mil>:
+ According to Douglas Gwyn <gwyn(a)arl.mil>:
"This spec was changed in ISO/IEC 9899:1999 TC1; in ISO/IEC
9899:1999 as initially published, the expansion was required
to be an integer constant of precisely matching type, which
Module: wine
Branch: master
Commit: 66873d5fec583b11582a8c7a21985214a436a586
URL: https://source.winehq.org/git/wine.git/?a=commit;h=66873d5fec583b11582a8c7a…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Thu Aug 8 15:21:54 2019 +0200
winex11.drv: A spelling fix and slight rewording in a comment.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/winex11.drv/display.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winex11.drv/display.c b/dlls/winex11.drv/display.c
index 435c0b8..a0f8489 100644
--- a/dlls/winex11.drv/display.c
+++ b/dlls/winex11.drv/display.c
@@ -233,7 +233,7 @@ static BOOL X11DRV_InitAdapter(HKEY video_hkey, INT video_index, INT gpu_index,
RegCreateKeyExW(HKEY_CURRENT_CONFIG, adapter_keyW, 0, NULL, REG_OPTION_VOLATILE, KEY_WRITE, NULL, &hkey, NULL);
/* Write GPU instance path so that we can find the GPU instance via adapters quickly. Another way is trying to match
- * them via the GUID in Device Paramters/VideoID, but it would required enumrating all GPU instances */
+ * them via the GUID in Device Parameters/VideoID, but it would require enumerating all GPU instances */
sprintfW(bufferW, gpu_instance_fmtW, gpu->vendor_id, gpu->device_id, gpu->subsys_id, gpu->revision_id, gpu_index);
if (RegSetValueExW(hkey, gpu_idW, 0, REG_SZ, (const BYTE *)bufferW, (strlenW(bufferW) + 1) * sizeof(WCHAR)))
goto done;