mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 17:33:08 +08:00
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:
committed by
Petro Karashchenko
parent
df6666ab5e
commit
33e35c6ce3
@@ -459,8 +459,11 @@ static int vsprintf_internal(FAR struct lib_outstream_s *stream,
|
||||
{
|
||||
flags |= FL_REPD_TYPE;
|
||||
}
|
||||
else
|
||||
{
|
||||
flags |= FL_LONG;
|
||||
}
|
||||
|
||||
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_SHORT;
|
||||
flags &= ~FL_LONG;
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user