Module: wine Branch: master Commit: 817302b5686a4abf92e65c5443c022110e748f96 URL: http://source.winehq.org/git/wine.git/?a=commit;h=817302b5686a4abf92e65c5443...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Thu Aug 4 10:57:46 2016 +0300
shlwapi: Fix its vs it's typo.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/shlwapi/url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/shlwapi/url.c b/dlls/shlwapi/url.c index ee93818..fe97fae 100644 --- a/dlls/shlwapi/url.c +++ b/dlls/shlwapi/url.c @@ -923,7 +923,7 @@ HRESULT WINAPI UrlCombineW(LPCWSTR pszBase, LPCWSTR pszRelative, }
if (ret == S_OK) { - /* Reuse mrelative as temp storage as its already allocated and not needed anymore */ + /* Reuse mrelative as temp storage as it's already allocated and not needed anymore */ if(*pcchCombined == 0) *pcchCombined = 1; ret = UrlCanonicalizeW(preliminary, mrelative, pcchCombined, (dwFlags & ~URL_FILE_USE_PATHURL));