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

oldstable
Andrew Talbot 2008-07-11 10:41:36 +01:00 committed by Alexandre Julliard
parent 716e1486b4
commit da1a84f6e4
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ DWORD MSCMS_get_tag_count( const icProfile *iccprofile )
void MSCMS_get_tag_by_index( icProfile *iccprofile, DWORD index, icTag *tag )
{
icTag *tmp = (icTag *)((char *)&iccprofile->data + index * sizeof(icTag));
icTag *tmp = (icTag *)((char *)iccprofile->data + index * sizeof(icTag));
tag->sig = tmp->sig;
tag->offset = tmp->offset;