From aa5905b1db1a39070596e9c64c4fc516c6c6a435 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Thu, 10 Jan 2008 22:11:24 +0000 Subject: [PATCH] mscms: Remove unneeded casts. --- dlls/mscms/icc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/mscms/icc.c b/dlls/mscms/icc.c index ffdd3e54b16..3b0ec22972d 100644 --- a/dlls/mscms/icc.c +++ b/dlls/mscms/icc.c @@ -80,8 +80,8 @@ void MSCMS_get_tag_by_index( icProfile *iccprofile, DWORD index, icTag *tag ) tag->size = tmp->size; MSCMS_adjust_endianess32( (ULONG *)&tag->sig ); - MSCMS_adjust_endianess32( (ULONG *)&tag->offset ); - MSCMS_adjust_endianess32( (ULONG *)&tag->size ); + MSCMS_adjust_endianess32( &tag->offset ); + MSCMS_adjust_endianess32( &tag->size ); } void MSCMS_get_tag_data( const icProfile *iccprofile, const icTag *tag, DWORD offset, void *buffer ) @@ -98,7 +98,7 @@ DWORD MSCMS_get_profile_size( const icProfile *iccprofile ) { DWORD size = ((const icHeader *)iccprofile)->size; - MSCMS_adjust_endianess32( (ULONG *)&size ); + MSCMS_adjust_endianess32( &size ); return size; }