mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
gdi32: Remove unneeded address-of operator from array name.
This commit is contained in:
parent
2865c727de
commit
613d17ae92
@ -3049,7 +3049,7 @@ static void calc_hash(FONT_DESC *pfd)
|
||||
hash ^= *ptr;
|
||||
for(i = 0, ptr = (DWORD*)&pfd->lf; i < 7; i++, ptr++)
|
||||
hash ^= *ptr;
|
||||
for(i = 0, ptr = (DWORD*)&pfd->lf.lfFaceName; i < LF_FACESIZE/2; i++, ptr++) {
|
||||
for(i = 0, ptr = (DWORD*)pfd->lf.lfFaceName; i < LF_FACESIZE/2; i++, ptr++) {
|
||||
two_chars = *ptr;
|
||||
pwc = (WCHAR *)&two_chars;
|
||||
if(!*pwc) break;
|
||||
|
Loading…
Reference in New Issue
Block a user