wininet: Fix trace typo.

This commit is contained in:
Juan Lang 2008-10-03 10:45:35 -07:00 committed by Alexandre Julliard
parent 9189bf3d72
commit f50b2c237d
1 changed files with 1 additions and 1 deletions

View File

@ -590,7 +590,7 @@ static DWORD URLCacheContainers_FindContainerW(LPCWSTR lpwszUrl, URLCACHECONTAIN
int prefix_len = strlenW(pContainer->cache_prefix);
if (!strncmpW(pContainer->cache_prefix, lpwszUrl, prefix_len))
{
TRACE("found container with prefx %s for URL %s\n", debugstr_w(pContainer->cache_prefix), debugstr_w(lpwszUrl));
TRACE("found container with prefix %s for URL %s\n", debugstr_w(pContainer->cache_prefix), debugstr_w(lpwszUrl));
*ppContainer = pContainer;
return ERROR_SUCCESS;
}