summaryrefslogtreecommitdiff
path: root/source3/rpc_server
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-03-15 10:06:10 +1100
committerJeremy Allison <jra@samba.org>2013-03-15 10:39:05 -0700
commit88e6342936cd82324e6bfed665e81831260a654d (patch)
tree14c4eef5780a1dce8c6f19c5a32d824effd8d0b9 /source3/rpc_server
parent6a5cae96788640ddce89a047bbc63b4dbc94ca89 (diff)
downloadsamba-88e6342936cd82324e6bfed665e81831260a654d.tar.gz
samba-88e6342936cd82324e6bfed665e81831260a654d.tar.bz2
samba-88e6342936cd82324e6bfed665e81831260a654d.zip
s3-lsad: Cast getpid() result to unsigned int for GNU/Solaris build
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/rpc_server')
-rw-r--r--source3/rpc_server/lsasd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/lsasd.c b/source3/rpc_server/lsasd.c
index 9815ad9c1a..8d2245abb5 100644
--- a/source3/rpc_server/lsasd.c
+++ b/source3/rpc_server/lsasd.c
@@ -973,7 +973,7 @@ void start_lsasd(struct tevent_context *ev_ctx,
exit(1);
}
- DEBUG(1, ("LSASD Daemon Started (%d)\n", getpid()));
+ DEBUG(1, ("LSASD Daemon Started (%u)\n", (unsigned int)getpid()));
/* loop forever */
rc = tevent_loop_wait(ev_ctx);