mirror of
https://github.com/postgres/postgres.git
synced 2025-08-19 23:22:23 +03:00
Fix typos and inconsistencies in code comments
Author: Alexander Lakhin Discussion: https://postgr.es/m/dec6aae8-2d63-639f-4d50-20e229fb83e3@gmail.com
This commit is contained in:
@@ -400,7 +400,7 @@ read_or_wait(Port *port, ssize_t len)
|
||||
{
|
||||
/*
|
||||
* If we got back less than zero, indicating an error, and that
|
||||
* wasn't just a EWOULDBOCK/EAGAIN, then give up.
|
||||
* wasn't just a EWOULDBLOCK/EAGAIN, then give up.
|
||||
*/
|
||||
if (ret < 0 && !(errno == EWOULDBLOCK || errno == EAGAIN))
|
||||
return -1;
|
||||
|
Reference in New Issue
Block a user