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 | 73b425121a8c99af3ed7adbdcff3f6f0cec92ac7 (patch) | |
tree | ceae49c17b4a8252b5da75920ab210de69d7d2ea /source/profile/profile.c | |
parent | 30edd7fdf1d791d76351a7cc23a83f97386c3087 (diff) | |
download | samba-73b425121a8c99af3ed7adbdcff3f6f0cec92ac7.tar.gz samba-73b425121a8c99af3ed7adbdcff3f6f0cec92ac7.tar.xz samba-73b425121a8c99af3ed7adbdcff3f6f0cec92ac7.zip |
More %d (uid_t) stuff...
Jeremy.
Diffstat (limited to 'source/profile/profile.c')
-rw-r--r-- | source/profile/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/profile/profile.c b/source/profile/profile.c index dce1d78a9b6..a00769cb468 100644 --- a/source/profile/profile.c +++ b/source/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); } |