diff options
author | Jeremy Allison <jra@samba.org> | 2006-06-16 01:47:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:17:31 -0500 |
commit | 300acb99ad9fcd4a36998d4ee4d8349478deca59 (patch) | |
tree | 4dd412e9f6a578c879e539c5a96877f662358b64 /source3/smbd | |
parent | c115570b857cff15c929cf80ad3c8f32272818d5 (diff) | |
download | samba-300acb99ad9fcd4a36998d4ee4d8349478deca59.tar.gz samba-300acb99ad9fcd4a36998d4ee4d8349478deca59.tar.bz2 samba-300acb99ad9fcd4a36998d4ee4d8349478deca59.zip |
r16284: Start fixing up gcc4 -O6 warnings on an x86_64 box. size_t != unsigned
int
in a format string.
Jeremy.
(This used to be commit face01ef01e1a3c96eae17c56cadf01020d4cb46)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/notify_fam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/notify_fam.c b/source3/smbd/notify_fam.c index 3b6be77aca..b7f9a36332 100644 --- a/source3/smbd/notify_fam.c +++ b/source3/smbd/notify_fam.c @@ -371,7 +371,7 @@ fam_register_notify(connection_struct * conn, } if ((info = SMB_MALLOC_P(struct fam_req_info)) == NULL) { - DEBUG(0, ("malloc of %d bytes failed\n", sizeof(struct fam_req_info))); + DEBUG(0, ("malloc of %u bytes failed\n", (unsigned int)sizeof(struct fam_req_info))); return(NULL); } |