fix incorrect return value for fwide function

when the orientation of the stream was already set, fwide was
incorrectly returning its argument (the requested orientation) rather
than the actual orientation of the stream.
This commit is contained in:
Rich Felker
2014-07-01 18:49:54 -04:00
parent 0b3d33d4d2
commit ebd8142a6a
+2 -1
View File
@@ -7,7 +7,8 @@
int fwide(FILE *f, int mode)
{
FLOCK(f);
if (!f->mode) mode = f->mode = NORMALIZE(mode);
if (!f->mode) f->mode = NORMALIZE(mode);
mode = f->mode;
FUNLOCK(f);
return mode;
}