1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-05 17:28:47 +00:00

Fix some gcc 4.0 warnings.

This commit is contained in:
Mike McCormack 2005-08-09 10:37:50 +00:00 committed by Alexandre Julliard
parent b0e091acbf
commit e659f1e60c
5 changed files with 6 additions and 7 deletions

View File

@ -712,7 +712,7 @@ DECL_HANDLER(wait_named_pipe)
}
else
{
unsigned int timeout;
int timeout;
if (req->timeout == NMPWAIT_USE_DEFAULT_WAIT)
timeout = pipe->timeout;
else

View File

@ -879,7 +879,7 @@ static void set_value( struct key *key, WCHAR *name, int type, const void *data,
}
/* get a key value */
static void get_value( struct key *key, const WCHAR *name, int *type, int *len )
static void get_value( struct key *key, const WCHAR *name, int *type, unsigned int *len )
{
struct key_value *value;
int index;

View File

@ -488,7 +488,7 @@ static void master_socket_poll_event( struct fd *fd, int event )
else if (event & POLLIN)
{
struct sockaddr_un dummy;
int len = sizeof(dummy);
unsigned int len = sizeof(dummy);
int client = accept( get_unix_fd( master_socket->fd ), (struct sockaddr *) &dummy, &len );
if (client == -1) return;
if (sock->timeout)

View File

@ -623,7 +623,6 @@ static struct sock *accept_socket( obj_handle_t handle )
struct sock *sock;
int acceptfd;
struct sockaddr saddr;
int slen;
sock=(struct sock*)get_handle_obj(current->process,handle,
GENERIC_READ|GENERIC_WRITE|SYNCHRONIZE,&sock_ops);
@ -642,7 +641,7 @@ static struct sock *accept_socket( obj_handle_t handle )
* or that accept() is allowed on it. In those cases we will get -1/errno
* return.
*/
slen = sizeof(saddr);
unsigned int slen = sizeof(saddr);
acceptfd = accept( get_unix_fd(sock->fd), &saddr, &slen);
if (acceptfd==-1)
{

View File

@ -734,8 +734,8 @@ static void get_selector_entry( struct thread *thread, int entry,
{
unsigned char flags_buf[4];
int *addr = (int *)thread->process->ldt_copy + entry;
if (read_thread_int( thread, addr, base ) == -1) goto done;
if (read_thread_int( thread, addr + 8192, limit ) == -1) goto done;
if (read_thread_int( thread, addr, (int *)base ) == -1) goto done;
if (read_thread_int( thread, addr + 8192, (int *)limit ) == -1) goto done;
addr = (int *)thread->process->ldt_copy + 2*8192 + (entry >> 2);
if (read_thread_int( thread, addr, (int *)flags_buf ) == -1) goto done;
*flags = flags_buf[entry & 3];