aboutsummaryrefslogtreecommitdiff
path: root/picohttp.h
diff options
context:
space:
mode:
authorWolfgang Draxinger <Wolfgang.Draxinger@physik.uni-muenchen.de>2013-07-19 20:16:33 +0200
committerWolfgang Draxinger <Wolfgang.Draxinger@physik.uni-muenchen.de>2013-07-19 20:16:33 +0200
commit3a3e367f76570b9d74b7834f272a1a4dc3e1d1fc (patch)
tree72fde5aa3e512651921d23831015aadfa74dc295 /picohttp.h
parentcfd0ed185c7b9bbcef04e84ef41074d054ca8cd0 (diff)
downloadlitheweb-3a3e367f76570b9d74b7834f272a1a4dc3e1d1fc.tar.gz
litheweb-3a3e367f76570b9d74b7834f272a1a4dc3e1d1fc.tar.bz2
fixed compiler warning
Diffstat (limited to 'picohttp.h')
-rw-r--r--picohttp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/picohttp.h b/picohttp.h
index 83cb5f2..a15cffb 100644
--- a/picohttp.h
+++ b/picohttp.h
@@ -120,7 +120,7 @@ struct picohttpRequest {
size_t contentlength;
uint8_t contentencoding;
uint8_t transferencoding;
- unsigned char multipartboundary[PICOHTTP_MULTIPARTBOUNDARY_MAX_LEN+1];
+ char multipartboundary[PICOHTTP_MULTIPARTBOUNDARY_MAX_LEN+1];
size_t chunklength;
} query;
struct {