summaryrefslogtreecommitdiff
path: root/main/SAPI.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-03-24 21:15:15 +0100
committerAnatol Belski <ab@php.net>2015-03-24 22:02:31 +0100
commit1a00554aafc832daf7db57b6c39120b68be926ba (patch)
treef0d1cf2e0c60b34287bb0be1f23884c2dad9f7f7 /main/SAPI.h
parent3066851dab531ac44a5debbf9b187277158dfcac (diff)
downloadphp-git-1a00554aafc832daf7db57b6c39120b68be926ba.tar.gz
fix datatype mismatches
Diffstat (limited to 'main/SAPI.h')
-rw-r--r--main/SAPI.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/SAPI.h b/main/SAPI.h
index e7a2721641..67ee50dec2 100644
--- a/main/SAPI.h
+++ b/main/SAPI.h
@@ -192,7 +192,7 @@ SAPI_API int sapi_add_header_ex(char *header_line, size_t header_line_len, zend_
SAPI_API int sapi_send_headers(void);
SAPI_API void sapi_free_header(sapi_header_struct *sapi_header);
SAPI_API void sapi_handle_post(void *arg);
-SAPI_API int sapi_read_post_block(char *buffer, size_t buflen);
+SAPI_API size_t sapi_read_post_block(char *buffer, size_t buflen);
SAPI_API int sapi_register_post_entries(sapi_post_entry *post_entry);
SAPI_API int sapi_register_post_entry(sapi_post_entry *post_entry);
SAPI_API void sapi_unregister_post_entry(sapi_post_entry *post_entry);