mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-11 23:45:13 +00:00
webclient.c: Remove a space after a negative sign
from:
return - ECONNABORTED;
to:
return -ECONNABORTED;
The latter style is more commonly used within NuttX code base.
Note: nxstyle doesn't complain on either of them.
This commit is contained in:
parent
ebbf2fc072
commit
f613da4f92
1 changed files with 1 additions and 1 deletions
|
|
@ -432,7 +432,7 @@ static inline int wget_parsestatus(struct webclient_context *ctx,
|
|||
}
|
||||
else
|
||||
{
|
||||
return - ECONNABORTED;
|
||||
return -ECONNABORTED;
|
||||
}
|
||||
|
||||
/* We're done parsing the status line, so start parsing
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue