mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
* Use SHDeleteKeyW explicitly here.
svn path=/trunk/; revision=63551
This commit is contained in:
parent
ee29688b8d
commit
60de098b28
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ static int reg_delete(WCHAR *key_name, WCHAR *value_name, BOOL value_empty,
|
|||
/* Delete subtree only if no /v* option is given */
|
||||
if (!value_name && !value_empty && !value_all)
|
||||
{
|
||||
if (SHDeleteKey(root, p) != ERROR_SUCCESS)
|
||||
if (SHDeleteKeyW(root, p) != ERROR_SUCCESS)
|
||||
{
|
||||
reg_message(STRING_CANNOT_FIND);
|
||||
return 1;
|
||||
|
|
Loading…
Reference in a new issue