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/process.c b/server/process.c index 24a34c8..eb869ec 100644 --- a/server/process.c +++ b/server/process.c
@@ -1181,7 +1181,7 @@ if (dll) { reply->size = dll->size; - reply->entry_point = 0; /* FIXME */ + reply->entry_point = NULL; /* FIXME */ if (dll->filename) { size_t len = min( dll->namelen, get_reply_max_size() );