msvcrt: Remove superfluous pointer casts.

This commit is contained in:
Michael Stefaniuc 2009-01-29 11:15:54 +01:00 committed by Alexandre Julliard
parent 6c2aeaece7
commit 9d4c9a0cdd
3 changed files with 5 additions and 5 deletions

View File

@ -2109,7 +2109,7 @@ int CDECL MSVCRT__write(int fd, const void* buf, unsigned int count)
unsigned int i, j, nr_lf;
char *p = NULL;
const char *q;
const char *s = (const char *)buf, *buf_start = (const char *)buf;
const char *s = buf, *buf_start = buf;
/* find number of \n ( without preceding \r ) */
for ( nr_lf=0,i = 0; i <count; i++)
{
@ -2123,7 +2123,7 @@ int CDECL MSVCRT__write(int fd, const void* buf, unsigned int count)
{
if ((q = p = MSVCRT_malloc(count + nr_lf)))
{
for (s = (const char *)buf, i = 0, j = 0; i < count; i++)
for (s = buf, i = 0, j = 0; i < count; i++)
{
if (s[i]== '\n')
{

View File

@ -265,7 +265,7 @@ static void msvcrt_set_ctype(unsigned int codepage, LCID lcid)
{
int i;
char str[3];
unsigned char *traverse = (unsigned char *)cp.LeadByte;
unsigned char *traverse = cp.LeadByte;
memset(MSVCRT_current_ctype, 0, sizeof(MSVCRT__ctype));
MSVCRT___lc_codepage = codepage;

View File

@ -173,7 +173,7 @@ MSVCRT_wchar_t* CDECL _wstrdate(MSVCRT_wchar_t* date)
{
static const WCHAR format[] = { 'M','M','\'','/','\'','d','d','\'','/','\'','y','y',0 };
GetDateFormatW(LOCALE_NEUTRAL, 0, NULL, format, (LPWSTR)date, 9);
GetDateFormatW(LOCALE_NEUTRAL, 0, NULL, format, date, 9);
return date;
}
@ -197,7 +197,7 @@ MSVCRT_wchar_t* CDECL _wstrtime(MSVCRT_wchar_t* time)
{
static const WCHAR format[] = { 'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0 };
GetTimeFormatW(LOCALE_NEUTRAL, 0, NULL, format, (LPWSTR)time, 9);
GetTimeFormatW(LOCALE_NEUTRAL, 0, NULL, format, time, 9);
return time;
}