Remove hints from Windows imports

This commit is contained in:
Justine Tunney 2023-07-27 14:09:07 -07:00
parent 7e0a09feec
commit 83341a4269
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
2449 changed files with 7093 additions and 7048 deletions

View file

@ -189,7 +189,7 @@ void *Worker(void *id) {
// we're not terrible concerned when errors happen here
if ((got = read(client, inbuf, sizeof(inbuf))) <= 0) break;
// check that client message wasn't fragmented into more reads
if (!(inmsglen = ParseHttpMessage(&msg, inbuf, got))) break;
if ((inmsglen = ParseHttpMessage(&msg, inbuf, got)) <= 0) break;
++messages;
#if LOGGING