Commit 278efe5f authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

odbc32: Cast-qual warning fix.

parent b44d713d
......@@ -218,7 +218,7 @@ static void ODBC_ReplicateODBCInstToRegistry (SQLHENV hEnv)
NULL, NULL, NULL)) == ERROR_FILE_NOT_FOUND)
{
if ((reg_ret = RegSetValueExA (hDrivers, desc, 0,
REG_SZ, (LPBYTE)"Installed", 10)) != ERROR_SUCCESS)
REG_SZ, (const BYTE *)"Installed", 10)) != ERROR_SUCCESS)
{
TRACE ("Error %ld replicating driver %s\n",
reg_ret, desc);
......
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