diff options
author | Jeremy Allison <jra@samba.org> | 2001-04-27 22:02:23 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-04-27 22:02:23 +0000 |
commit | 5345d9eb57d7d8e1c8b3a4ae17e20ef87c24345d (patch) | |
tree | 7e8d9afdde4efb07ee6c0341b3a043dff13e3031 /source3/profile | |
parent | 9b783398750cbf6e8b6b6bbb76dd393b432403c7 (diff) | |
download | samba-5345d9eb57d7d8e1c8b3a4ae17e20ef87c24345d.tar.gz samba-5345d9eb57d7d8e1c8b3a4ae17e20ef87c24345d.tar.bz2 samba-5345d9eb57d7d8e1c8b3a4ae17e20ef87c24345d.zip |
More %d (uid_t) stuff...
Jeremy.
(This used to be commit 73b425121a8c99af3ed7adbdcff3f6f0cec92ac7)
Diffstat (limited to 'source3/profile')
-rw-r--r-- | source3/profile/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/profile/profile.c b/source3/profile/profile.c index dce1d78a9b..a00769cb46 100644 --- a/source3/profile/profile.c +++ b/source3/profile/profile.c @@ -85,7 +85,7 @@ void reqprofile_message(int msg_type, pid_t src, void *buf, size_t len) #else level = 0; #endif - DEBUG(1,("INFO: Received REQ_PROFILELEVEL message from PID %d\n",src)); + DEBUG(1,("INFO: Received REQ_PROFILELEVEL message from PID %u\n",(unsigned int)src)); message_send_pid(src, MSG_PROFILELEVEL, &level, sizeof(int), True); } |