From 7eebaa19cefdc91dc94c9b4187d1e9a4eb8273bb Mon Sep 17 00:00:00 2001 From: Birunthan Mohanathas Date: Sun, 1 Jul 2012 13:36:31 +0300 Subject: [PATCH] Minor fix to fdcf133 --- Plugins/PluginRecycleManager/RecycleManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/PluginRecycleManager/RecycleManager.cpp b/Plugins/PluginRecycleManager/RecycleManager.cpp index ed491c8f..390e149f 100644 --- a/Plugins/PluginRecycleManager/RecycleManager.cpp +++ b/Plugins/PluginRecycleManager/RecycleManager.cpp @@ -300,7 +300,7 @@ PLUGIN_EXPORT void ExecuteBang(void* data, LPCWSTR args) DWORD WINAPI QueryRecycleBinThreadProc(void* pParam) { - // NOTE: Do not use CRT function (since thread was created by CreateThread())! + // NOTE: Do not use CRT functions (since thread was created with CreateThread())! SHQUERYRBINFO rbi = {0}; rbi.cbSize = sizeof(SHQUERYRBINFO); @@ -390,7 +390,7 @@ CRawString GetRecycleBinDirectory(WCHAR drive, bool& isFAT) SetErrorMode(oldMode | SEM_FAILCRITICALERRORS); WCHAR filesystem[16]; - BOOL volumeResult = GetVolumeInformation(search, NULL, 0, NULL, NULL, NULL, filesystem, _countof(filesystem))); + BOOL volumeResult = GetVolumeInformation(search, NULL, 0, NULL, NULL, NULL, filesystem, _countof(filesystem)); SetErrorMode(oldMode);