mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-17 08:00:32 +00:00
Remove hints from Windows imports
This commit is contained in:
parent
7e0a09feec
commit
83341a4269
2449 changed files with 7093 additions and 7048 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue