misc: Use __ferror_unlocked instead of ferror

The ferror results in an unnecessary PLT reference.  Use
__ferror_unlocked instead , which gets inlined.
This commit is contained in:
Siddhesh Poyarekar 2020-12-23 07:03:42 +05:30
parent 0e981d3524
commit be37b80705
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ __addmntent (FILE *stream, const struct mntent *mnt)
write_string (stream, mnt->mnt_opts);
fprintf (stream, "%d %d\n", mnt->mnt_freq, mnt->mnt_passno);
ret = ferror (stream) != 0 || fflush (stream) != 0;
ret = __ferror_unlocked (stream) != 0 || fflush (stream) != 0;
funlockfile (stream);