From 7ae8645467b3dc731d554213ecab3e6794fce9ed Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Thu, 15 Jul 2004 22:08:05 +0000 Subject: [PATCH] Fixed one lvalue casted assignment for the new compiler. --- programs/wineconsole/curses.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/wineconsole/curses.c b/programs/wineconsole/curses.c index c5e365c75cf..6e94320ba0a 100644 --- a/programs/wineconsole/curses.c +++ b/programs/wineconsole/curses.c @@ -858,7 +858,7 @@ static void WCCURSES_DeleteBackend(struct inner_data* data) HeapFree(GetProcessHeap(), 0, PRIVATE(data)->line); HeapFree(GetProcessHeap(), 0, PRIVATE(data)); - PRIVATE(data) = NULL; + data->private = NULL; } /******************************************************************