From df6edb0d3cc739dedd5edbc5398535923df5df92 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 14 Aug 2007 08:29:36 +0000 Subject: r24402: Fix a 64-bit warning (This used to be commit 73d99d6f9a5554d957ae737ff617b6a2e88b52bc) --- source3/smbd/reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd') diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 826306c883..d42d6399fb 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -2501,7 +2501,7 @@ normal_readbraw: outbuf = TALLOC_ARRAY(NULL, char, nread+4); if (!outbuf) { DEBUG(0,("send_file_readbraw: TALLOC_ARRAY failed for size %u.\n", - nread+4)); + (unsigned)(nread+4))); reply_readbraw_error(); return; } -- cgit