Commit ff0445a5 authored by Hugh McMaster's avatar Hugh McMaster Committed by Alexandre Julliard

reg/tests: Update delete_value() declaration to deconstify 'const HKEY'.

parent 9780dfc0
......@@ -205,7 +205,7 @@ void add_value_(const char *file, unsigned line, HKEY hkey, const char *name,
lok(err == ERROR_SUCCESS, "RegSetValueExA failed: got error %d\n", err);
}
void delete_value_(const char *file, unsigned line, const HKEY hkey, const char *name)
void delete_value_(const char *file, unsigned line, HKEY hkey, const char *name)
{
LONG err;
......
......@@ -71,7 +71,7 @@ void add_value_(const char *file, unsigned line, HKEY hkey, const char *name,
DWORD type, const void *data, size_t size);
#define delete_value(k,n) delete_value_(__FILE__,__LINE__,k,n)
void delete_value_(const char *file, unsigned line, const HKEY hkey, const char *name);
void delete_value_(const char *file, unsigned line, HKEY hkey, const char *name);
/* export.c */
#define compare_export(f,e,todo) compare_export_(__FILE__,__LINE__,f,e,todo)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment