[WINESYNC] reg: Better indicate when a registry value is not found.

Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id b80da20656feda99f9c6e749f5cd6d6f3c242cd3 by Hugh McMaster <hugh.mcmaster@outlook.com>

manual adjustment needed
This commit is contained in:
winesync 2022-01-16 21:04:41 +01:00 committed by Thomas Csovcsity
parent 9a8e4a271a
commit 6c0f70db4d
5 changed files with 5 additions and 5 deletions

View file

@ -96,7 +96,7 @@ static int run_delete(HKEY root, WCHAR *path, WCHAR *key_name, WCHAR *value_name
if (RegDeleteValueW(key, value_empty ? NULL : value_name) != ERROR_SUCCESS)
{
RegCloseKey(key);
output_message(STRING_CANNOT_FIND);
output_message(STRING_VALUE_NONEXIST);
return 1;
}
}