From 44e975e0ca158977991317b312238ab136820f4a Mon Sep 17 00:00:00 2001 From: jacob Date: Wed, 10 Jan 2007 00:46:45 +0000 Subject: [PATCH] According to Frank Dijcks, this cast makes OpenWatcom happier. git-svn-id: svn://svn.tartarus.org/sgt/putty@7089 cda61777-01e9-0310-a592-d414129be87e --- windows/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/window.c b/windows/window.c index a2ef1bf0..c86b14b5 100644 --- a/windows/window.c +++ b/windows/window.c @@ -1233,7 +1233,7 @@ static void exact_textout(HDC hdc, int x, int y, CONST RECT *lprc, gcpr.lStructSize = sizeof(gcpr); gcpr.lpGlyphs = (void *)buffer; - gcpr.lpClass = classbuffer; + gcpr.lpClass = (void *)classbuffer; gcpr.nGlyphs = cbCount; GetCharacterPlacementW(hdc, lpString, cbCount, 0, &gcpr, -- 2.11.0