Mariusz Pluciński : shell32: Fix typo.
Module: wine Branch: master Commit: 4fd24bc20eace1694d4204bc7713b201d0e2c8f8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4fd24bc20eace1694d4204bc77... Author: Mariusz Pluciński <vshader(a)gmail.com> Date: Wed Jun 22 15:10:25 2011 +0200 shell32: Fix typo. --- dlls/shell32/shellpath.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index ffd1aed..06108ca 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; }
participants (1)
-
Alexandre Julliard