Module: wine Branch: master Commit: f50b2c237d8b399a5700e9e85b807e8e7b5a3f9c URL: http://source.winehq.org/git/wine.git/?a=commit;h=f50b2c237d8b399a5700e9e85b... Author: Juan Lang <juan.lang(a)gmail.com> Date: Fri Oct 3 10:45:35 2008 -0700 wininet: Fix trace typo. --- dlls/wininet/urlcache.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/wininet/urlcache.c b/dlls/wininet/urlcache.c index 3649a05..1d1beaf 100644 --- a/dlls/wininet/urlcache.c +++ b/dlls/wininet/urlcache.c @@ -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; }