Module: wine Branch: master Commit: 83fee7456de7a0789cc08f12691a17eb36bd6319 URL: http://source.winehq.org/git/wine.git/?a=commit;h=83fee7456de7a0789cc08f1269...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Sun May 1 11:24:36 2016 +0300
shell32/tests: Fix a typo in comment.
Signed-off-by: Andrey Gusev andrey.goosev@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/shell32/tests/assoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/shell32/tests/assoc.c b/dlls/shell32/tests/assoc.c index 9cd6aeb..c425038 100644 --- a/dlls/shell32/tests/assoc.c +++ b/dlls/shell32/tests/assoc.c @@ -160,7 +160,7 @@ static void test_IQueryAssociations_GetString(void) r = RegSetValueExW(test_extension_key, NULL, 0, REG_SZ, (PBYTE)test_progidW, sizeof(test_progidW)); ok(r == ERROR_SUCCESS, "RegSetValueExW(HKCR\.test, NULL, "testfile") failed: 0x%lx\n", r);
- /* adding progid key with no information shuld fail to return information */ + /* adding progid key with no information should fail to return information */ r = RegCreateKeyExW(HKEY_CLASSES_ROOT, test_progidW, 0, NULL, 0, KEY_ALL_ACCESS, NULL, &test_progid_key, NULL); ok(r == ERROR_SUCCESS, "RegCreateKeyExW(HKCR, "testfile") failed: 0x%lx\n", r); getstring_test(test_extensionW, NULL, ASSOCSTR_DEFAULTICON, NULL, __LINE__);