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:
YAMAMOTO Takashi 2021-02-12 09:23:31 +09:00 committed by Abdelatif Guettouche
parent ebbf2fc072
commit f613da4f92

View File

@ -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