From 454de808a2a56f106c0d211c7da323829f14942d Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 5 Jun 2007 10:49:05 +0000 Subject: r23355: Fix some more build warnings. Guenther (This used to be commit 23e25bba8fafb31492b517d63f0a00c5ec07d5da) --- source3/nsswitch/winbindd_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/nsswitch/winbindd_cache.c') diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c index eba3497675..d1c34100ca 100644 --- a/source3/nsswitch/winbindd_cache.c +++ b/source3/nsswitch/winbindd_cache.c @@ -3419,7 +3419,7 @@ int winbindd_validate_cache(void) if (bytes_read != sizeof(v_status)) { DEBUG(10, ("winbindd_validate_cache: read %d bytes from pipe " - "but expected %d", bytes_read, sizeof(v_status))); + "but expected %d", bytes_read, (int)sizeof(v_status))); DEBUGADD(10, (" -> assuming child crashed\n")); v_status.success = False; } -- cgit