-
Notifications
You must be signed in to change notification settings - Fork 475
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Width specifier not always respected for non-left-aligned fields #113
Comments
eyalroz
added a commit
to eyalroz/printf
that referenced
this issue
Jul 30, 2021
…h precision set. Also, added a relevant test suite check.
eyalroz
added a commit
to eyalroz/printf
that referenced
this issue
Jul 30, 2021
…ix in @mickjc750's `bugfix` branch (for mpaland#113).
eyalroz
changed the title
Width specifier not always respected
Width specifier not always respected for non-left-aligned fields
Jul 30, 2021
eyalroz
added a commit
to eyalroz/printf
that referenced
this issue
Jul 30, 2021
…h precision set. Also, added a relevant test suite check.
eyalroz
added a commit
to eyalroz/printf
that referenced
this issue
Jul 30, 2021
…h precision set. Also, added a relevant test suite check.
eyalroz
added a commit
to eyalroz/printf
that referenced
this issue
Aug 3, 2021
…h precision set. Also, added a relevant test suite check.
KarlK90
pushed a commit
to qmk/printf
that referenced
this issue
Jul 7, 2022
…r `log10()` approximation controllable by a CMake option, and changed the default from 2 to 4 (which is the maximum supported at the moment).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If we run
sprintf_("%-20.5i", 123)
, we get123
+ 17 spaces rather than00123
+ 15 spaces.This bug was noticed and supposedly fixed in this commit of mickjc750's fork.
The text was updated successfully, but these errors were encountered: