cabinet: Remove unneeded cast.

This commit is contained in:
Andrew Talbot 2007-12-29 15:37:27 +00:00 committed by Alexandre Julliard
parent 867f254bec
commit 69599675a7
1 changed files with 1 additions and 1 deletions

View File

@ -461,7 +461,7 @@ static char *FDI_read_string(HFDI hfdi, INT_PTR hf, long cabsize)
}
/* otherwise, set the stream to just after the string and return */
PFDI_SEEK(hfdi, hf, base + ((cab_off_t) strlen((char *) buf)) + 1, SEEK_SET);
PFDI_SEEK(hfdi, hf, base + strlen((char *)buf) + 1, SEEK_SET);
return (char *) buf;
}