mscms: Remove unneeded address-of operator from array name.
This commit is contained in:
parent
716e1486b4
commit
da1a84f6e4
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue