urlmon: Fix typo in trace in validate_path.

This commit is contained in:
Gerald Pfeifer 2010-10-31 15:14:59 +01:00 committed by Alexandre Julliard
parent f89fdb4429
commit 1c11396175
1 changed files with 1 additions and 1 deletions

View File

@ -3776,7 +3776,7 @@ static HRESULT validate_path(const UriBuilder *builder, parse_data *data, DWORD
parse_path_opaque(pptr, data, flags) : parse_path_hierarchical(pptr, data, flags);
if(!valid || (check_len && expected_len != data->path_len)) {
TRACE("(%p %p %x): Invalid path componet %s.\n", builder, data, flags,
TRACE("(%p %p %x): Invalid path component %s.\n", builder, data, flags,
debugstr_wn(component, expected_len));
return INET_E_INVALID_URL;
}