diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-03-14 21:17:54 +1100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-03-15 10:38:50 -0700 |
commit | cdc062273ce580877fd47e3f328d24c624dfbc0f (patch) | |
tree | d0e142ca00ede1882135ab8276e515d8b4042c15 /source3 | |
parent | 1fba1406449880384bb585a0eda6e9be60a868fe (diff) | |
download | samba-cdc062273ce580877fd47e3f328d24c624dfbc0f.tar.gz samba-cdc062273ce580877fd47e3f328d24c624dfbc0f.tar.bz2 samba-cdc062273ce580877fd47e3f328d24c624dfbc0f.zip |
spoolssd: Cast getpid() result to unsigned int for GNU/Solaris build
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/printing/spoolssd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/spoolssd.c b/source3/printing/spoolssd.c index 464d12bf99..8f182f824c 100644 --- a/source3/printing/spoolssd.c +++ b/source3/printing/spoolssd.c @@ -807,7 +807,7 @@ pid_t start_spoolssd(struct tevent_context *ev_ctx, exit(1); } - DEBUG(1, ("SPOOLSS Daemon Started (%d)\n", getpid())); + DEBUG(1, ("SPOOLSS Daemon Started (%u)\n", (unsigned int)getpid())); pfh_manage_pool(ev_ctx, msg_ctx, &pf_spoolss_cfg, spoolss_pool); |