From cdc062273ce580877fd47e3f328d24c624dfbc0f Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 14 Mar 2013 21:17:54 +1100 Subject: spoolssd: Cast getpid() result to unsigned int for GNU/Solaris build Reviewed-by: Jeremy Allison --- source3/printing/spoolssd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/printing') 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); -- cgit