diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-03-14 21:15:18 +1100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-03-15 10:38:46 -0700 |
commit | 1fba1406449880384bb585a0eda6e9be60a868fe (patch) | |
tree | 7f8d17e43bc75396b4fbf933089ba8c8c2704a38 /source3 | |
parent | bf7da085b125ca9b18bdca22e05a9a6613771e3d (diff) | |
download | samba-1fba1406449880384bb585a0eda6e9be60a868fe.tar.gz samba-1fba1406449880384bb585a0eda6e9be60a868fe.tar.bz2 samba-1fba1406449880384bb585a0eda6e9be60a868fe.zip |
s3-smbd/process.c: Cast pid_t result to int for GNU/Solaris build
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 0a8e62c85a..1640cca60d 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -3081,7 +3081,7 @@ bool fork_echo_handler(struct smbd_server_connection *sconn) listener_pipe[1] = -1; sconn->smb1.echo_handler.trusted_fd = listener_pipe[0]; - DEBUG(10,("fork_echo_handler: main[%d] echo_child[%d]\n", (int)getpid(), child)); + DEBUG(10,("fork_echo_handler: main[%d] echo_child[%d]\n", (int)getpid(), (int)child)); /* * Without smb signing this is the same as the normal smbd |