From 0cc7d4d22d67c910457ddeeea7f667c4d91f6a98 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Thu, 11 Nov 2004 17:46:22 +0000 Subject: [PATCH] Fix typo: Call RegDeleteValue to delete a value. svn path=/trunk/; revision=11621 --- reactos/lib/cpl/timedate/timedate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/lib/cpl/timedate/timedate.c b/reactos/lib/cpl/timedate/timedate.c index eed20cf578a..408096dfc82 100644 --- a/reactos/lib/cpl/timedate/timedate.c +++ b/reactos/lib/cpl/timedate/timedate.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: timedate.c,v 1.4 2004/11/11 12:24:56 ekohl Exp $ +/* $Id: timedate.c,v 1.5 2004/11/11 17:46:22 ekohl Exp $ * * PROJECT: ReactOS Timedate Control Panel * FILE: lib/cpl/timedate/timedate.c @@ -458,8 +458,8 @@ SetAutoDaylightInfo(HWND hwnd) } else { - RegDeleteKeyW(hKey, - L"DisableAutoDaylightTimeSet"); + RegDeleteValueW(hKey, + L"DisableAutoDaylightTimeSet"); } RegCloseKey(hKey);