Commit 335ce754 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

ntdll: Fix a compiler warning.

parent b46ab0b8
...@@ -569,7 +569,7 @@ int server_get_unix_fd( obj_handle_t handle, unsigned int wanted_access, int *un ...@@ -569,7 +569,7 @@ int server_get_unix_fd( obj_handle_t handle, unsigned int wanted_access, int *un
sigset_t sigset; sigset_t sigset;
obj_handle_t fd_handle; obj_handle_t fd_handle;
int ret = 0, fd; int ret = 0, fd;
unsigned int access; unsigned int access = 0;
*unix_fd = -1; *unix_fd = -1;
*needs_close = 0; *needs_close = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment