gdiplus: Remove unneeded address-of operator from array name.

This commit is contained in:
Andrew Talbot 2008-07-10 23:08:52 +01:00 committed by Alexandre Julliard
parent 613d17ae92
commit dbc57826d6
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ GpStatus WINGDIPAPI GdipCreateFontFromLogfontW(HDC hdc,
*font = GdipAlloc(sizeof(GpFont));
if(!*font) return OutOfMemory;
memcpy(&(*font)->lfw.lfFaceName, logfont->lfFaceName, LF_FACESIZE *
memcpy((*font)->lfw.lfFaceName, logfont->lfFaceName, LF_FACESIZE *
sizeof(WCHAR));
(*font)->lfw.lfHeight = logfont->lfHeight;
(*font)->lfw.lfItalic = logfont->lfItalic;