mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 09:18:00 +08:00
Prep for 6.3 release
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3615 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -138,7 +138,6 @@ int fputs(FAR const char *s, FAR FILE *stream)
|
||||
{
|
||||
int ntowrite;
|
||||
int nput;
|
||||
int ret;
|
||||
|
||||
/* Make sure that a string was provided. */
|
||||
|
||||
@@ -163,7 +162,7 @@ int fputs(FAR const char *s, FAR FILE *stream)
|
||||
nput = lib_fwrite(s, ntowrite, stream);
|
||||
if (nput < 0)
|
||||
{
|
||||
return EOF
|
||||
return EOF;
|
||||
}
|
||||
return nput;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user