diff options
author | Gerald Carter <jerry@samba.org> | 2003-01-24 16:34:54 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-01-24 16:34:54 +0000 |
commit | 48f6ede4b4170522cf6f8b19921f10c3f89150c8 (patch) | |
tree | 963ac89645b83fb6564bb304b61bc1ad90fb10a0 /source3/lib | |
parent | 6cf8ac019ec5022455de7ec80e798baf552e291f (diff) | |
download | samba-48f6ede4b4170522cf6f8b19921f10c3f89150c8.tar.gz samba-48f6ede4b4170522cf6f8b19921f10c3f89150c8.tar.bz2 samba-48f6ede4b4170522cf6f8b19921f10c3f89150c8.zip |
merging [un]signed declaration
(This used to be commit 15be89e72fee97106db1bd06d18060c21bbf78e1)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/sendfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/sendfile.c b/source3/lib/sendfile.c index ccebd25cc1..bcc8cb08ca 100644 --- a/source3/lib/sendfile.c +++ b/source3/lib/sendfile.c @@ -38,7 +38,7 @@ ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T of { size_t total=0; ssize_t ret; - ssize_t hdr_len = 0; + size_t hdr_len = 0; /* * Send the header first. |