summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-08-14 08:29:36 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:29:40 -0500
commitdf6edb0d3cc739dedd5edbc5398535923df5df92 (patch)
tree0745ef1b076946fd92ccbb205c71fc407fea401a /source3/smbd
parentf7f176dd0d8878b79991455df9d9bf80ac82cd1a (diff)
downloadsamba-df6edb0d3cc739dedd5edbc5398535923df5df92.tar.gz
samba-df6edb0d3cc739dedd5edbc5398535923df5df92.tar.bz2
samba-df6edb0d3cc739dedd5edbc5398535923df5df92.zip
r24402: Fix a 64-bit warning
(This used to be commit 73d99d6f9a5554d957ae737ff617b6a2e88b52bc)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/reply.c2
1 files changed, 1 insertions, 1 deletions
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;
}