msvcrt: Cast-qual warnings fix.

This commit is contained in:
Andrew Talbot 2006-09-18 22:18:41 +01:00 committed by Alexandre Julliard
parent dce3302f71
commit c5df5717e9
2 changed files with 4 additions and 3 deletions

View File

@ -1980,7 +1980,8 @@ int CDECL _write(int fd, const void* buf, unsigned int count)
else else
{ {
unsigned int i, j, nr_lf; unsigned int i, j, nr_lf;
char *s =(char*)buf, *buf_start=(char*)buf, *p; char *p;
const char *s = (const char *)buf, *buf_start = (const char *)buf;
/* find number of \n ( without preceding \r ) */ /* find number of \n ( without preceding \r ) */
for ( nr_lf=0,i = 0; i <count; i++) for ( nr_lf=0,i = 0; i <count; i++)
{ {
@ -1994,7 +1995,7 @@ int CDECL _write(int fd, const void* buf, unsigned int count)
{ {
if ((p = MSVCRT_malloc(count + nr_lf))) if ((p = MSVCRT_malloc(count + nr_lf)))
{ {
for(s=(char*)buf, i=0, j=0; i<count; i++) for (s = (const char *)buf, i = 0, j = 0; i < count; i++)
{ {
if (s[i]== '\n') if (s[i]== '\n')
{ {

View File

@ -82,7 +82,7 @@ void* CDECL _lfind(const void* match, const void* start,
{ {
if (cf(match, start) == 0) if (cf(match, start) == 0)
return (void *)start; /* found */ return (void *)start; /* found */
start = (char*)start + elem_size; start = (const char *)start + elem_size;
} while (--size); } while (--size);
return NULL; return NULL;
} }