aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfgang Draxinger <Wolfgang.Draxinger@physik.uni-muenchen.de>2013-07-19 20:10:14 +0200
committerWolfgang Draxinger <Wolfgang.Draxinger@physik.uni-muenchen.de>2013-07-19 20:10:14 +0200
commitcfd0ed185c7b9bbcef04e84ef41074d054ca8cd0 (patch)
tree6a3301d9e4af4ef7810d76e51fdd00df41560a1b
parent0046c1bae61e883199eee61fc2da20799ee2730f (diff)
downloadlitheweb-cfd0ed185c7b9bbcef04e84ef41074d054ca8cd0.tar.gz
litheweb-cfd0ed185c7b9bbcef04e84ef41074d054ca8cd0.tar.bz2
type for picohttpResponseWrite changed to void const *
-rw-r--r--picohttp.c2
-rw-r--r--picohttp.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/picohttp.c b/picohttp.c
index a532c69..84e0238 100644
--- a/picohttp.c
+++ b/picohttp.c
@@ -1071,7 +1071,7 @@ int picohttpResponseSendHeaders (
int picohttpResponseWrite (
struct picohttpRequest * const req,
size_t len,
- char const *buf )
+ void const *buf )
{
int e;
diff --git a/picohttp.h b/picohttp.h
index 644761f..83cb5f2 100644
--- a/picohttp.h
+++ b/picohttp.h
@@ -170,7 +170,7 @@ int picohttpResponseSendHeader (
int picohttpResponseWrite (
struct picohttpRequest * const req,
size_t len,
- char const *buf );
+ void const *buf );
int picohttpGetch(struct picohttpRequest * const req);