libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit edf32d5108765ee98006ad73f652a72e9194487f
parent aa69e178d21cb3dcfd8bd11e56cc6dc6ae39adb6
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Sun,  6 Mar 2022 21:12:01 +0300

response.c: fixed coding style

Diffstat:
Msrc/microhttpd/response.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c @@ -990,7 +990,7 @@ file_reader (void *cls, pos_uli.QuadPart = (uint64_t) offset64; /* Simple transformation 64bit -> 2x32bit. */ f_ol.Offset = pos_uli.LowPart; f_ol.OffsetHigh = pos_uli.HighPart; - if (! ReadFile (fh, (void*) buf, toRead, &resRead, &f_ol)) + if (! ReadFile (fh, (void *) buf, toRead, &resRead, &f_ol)) return MHD_CONTENT_READER_END_WITH_ERROR; /* Read error. */ if (0 == resRead) return MHD_CONTENT_READER_END_OF_STREAM;