libc/stdio: Don't set FL_[LONG|SHORT] repeatly in vsprintf_internal

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2022-11-26 00:53:02 +08:00 committed by Petro Karashchenko
parent df6666ab5e
commit 33e35c6ce3

View File

@ -459,8 +459,11 @@ static int vsprintf_internal(FAR struct lib_outstream_s *stream,
{
flags |= FL_REPD_TYPE;
}
else
{
flags |= FL_LONG;
}
flags &= ~FL_SHORT;
continue;
}
@ -471,8 +474,11 @@ static int vsprintf_internal(FAR struct lib_outstream_s *stream,
{
flags |= FL_REPD_TYPE;
}
else
{
flags |= FL_SHORT;
}
flags &= ~FL_LONG;
continue;
}