From 1a00554aafc832daf7db57b6c39120b68be926ba Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 24 Mar 2015 21:15:15 +0100 Subject: fix datatype mismatches --- main/SAPI.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/SAPI.h') 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); -- cgit v1.2.1