From 4fd24bc20eace1694d4204bc7713b201d0e2c8f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20Pluci=C5=84ski?= Date: Wed, 22 Jun 2011 15:10:25 +0200 Subject: [PATCH] shell32: Fix typo. --- dlls/shell32/shellpath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index ffd1aeda680..06108cae55c 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -3170,7 +3170,7 @@ static HRESULT WINAPI knownfolder_QueryInterface( return S_OK; } -static HRESULT knowfolder_set_id( +static HRESULT knownfolder_set_id( IKnownFolder *iface, const KNOWNFOLDERID *kfid) { @@ -3438,7 +3438,7 @@ static HRESULT WINAPI foldermanager_GetFolder( } hr = knownfolder_create( (void **)ppkf ); if (SUCCEEDED( hr )) - hr = knowfolder_set_id( *ppkf, rfid ); + hr = knownfolder_set_id( *ppkf, rfid ); return hr; }