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:
patacongo
2011-05-15 23:13:04 +00:00
parent 3dcd7ff49a
commit c2052ea364
4 changed files with 222 additions and 136 deletions
+1 -2
View File
@@ -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;
}