commit | c51657148120c98f52ee5063ad0225cc467b4681 | [log] [tgz] |
---|---|---|
author | Robert Shearman <rob@codeweavers.com> | Wed May 25 18:41:09 2005 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed May 25 18:41:09 2005 +0000 |
tree | d7f8eeb97dc56135b050c64d5ee2a8cee55aafb3 | |
parent | 03f6f6f7cc7bc99c1581a547000305a6326d21e3 [diff] [blame] |
- Use NULL instead of 0 for all non-handle pointers. - Fix non-ANSI function declarations. - Make a function static.
diff --git a/server/fd.c b/server/fd.c index 72c3d9f..6d6b008 100644 --- a/server/fd.c +++ b/server/fd.c
@@ -1042,7 +1042,7 @@ { struct timeval when; - gettimeofday( &when, 0 ); + gettimeofday( &when, NULL ); add_timeout( &when, *timeout ); async->timeout = add_timeout_user( &when, async_callback, async ); }