summaryrefslogtreecommitdiffstats
path: root/include/http_protocol.h
diff options
context:
space:
mode:
authorBen Laurie <ben@apache.org>1999-09-12 00:14:37 +0200
committerBen Laurie <ben@apache.org>1999-09-12 00:14:37 +0200
commit5536bd40700dce9a46dd0578c891b892a69ae7db (patch)
tree8cfb2eee043b013c0084c16ae0e1dce6f2fc69d5 /include/http_protocol.h
parentUse return status instead of character value for EOF. (diff)
downloadapache2-5536bd40700dce9a46dd0578c891b892a69ae7db.tar.xz
apache2-5536bd40700dce9a46dd0578c891b892a69ae7db.zip
Fix warnings.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83894 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_protocol.h')
-rw-r--r--include/http_protocol.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/http_protocol.h b/include/http_protocol.h
index 908326ce7b..e962b962c9 100644
--- a/include/http_protocol.h
+++ b/include/http_protocol.h
@@ -173,7 +173,8 @@ API_EXPORT(int) ap_discard_request_body(request_rec *r);
/* Sending a byterange */
API_EXPORT(int) ap_set_byterange(request_rec *r);
-API_EXPORT(int) ap_each_byterange(request_rec *r, long *offset, long *length);
+API_EXPORT(int) ap_each_byterange(request_rec *r, ap_off_t *offset,
+ long *length);
/* Support for the Basic authentication protocol. Note that there's
* nothing that prevents these from being in mod_auth.c, except that other