diff options
Diffstat (limited to 'source3/nsswitch/winbindd_cache.c')
-rw-r--r-- | source3/nsswitch/winbindd_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c index 86846f7835..ba69d41392 100644 --- a/source3/nsswitch/winbindd_cache.c +++ b/source3/nsswitch/winbindd_cache.c @@ -229,8 +229,8 @@ static time_t centry_time(struct cache_entry *centry) { time_t ret; if (centry->len - centry->ofs < sizeof(time_t)) { - DEBUG(0,("centry corruption? needed %d bytes, have %d\n", - sizeof(time_t), centry->len - centry->ofs)); + DEBUG(0,("centry corruption? needed %u bytes, have %u\n", + (unsigned int)sizeof(time_t), (unsigned int)(centry->len - centry->ofs))); smb_panic("centry_time"); } ret = IVAL(centry->data, centry->ofs); /* FIXME: correct ? */ |