libfflush remove extra semicolon

This commit is contained in:
Daniel Agar 2017-06-04 12:20:48 -04:00
parent 4526cd665e
commit 30ab574060
No known key found for this signature in database
GPG Key ID: FD3CBA98017A69DE
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ ssize_t lib_fflush(FAR FILE *stream, bool bforce)
*/ */
stream->fs_flags |= __FS_FLAG_ERROR; stream->fs_flags |= __FS_FLAG_ERROR;
ret = -get_errno();; ret = -get_errno();
goto errout_with_sem; goto errout_with_sem;
} }