Skip to content
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

Fixed typo: 'lenght' in minimal-printf #12442

Merged
merged 1 commit into from
Feb 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions platform/source/minimal-printf/mbed_printf_implementation.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ int mbed_minimal_formatted_string(char *buffer, size_t length, const char *forma
value = va_arg(arguments, MBED_SIGNED_NATIVE_TYPE);
}

/* constrict value based on lenght modifier */
/* constrict value based on length modifier */
switch (length_modifier) {
case LENGTH_NONE:
value = (int) value;
Expand Down Expand Up @@ -557,7 +557,7 @@ int mbed_minimal_formatted_string(char *buffer, size_t length, const char *forma
value = va_arg(arguments, MBED_UNSIGNED_NATIVE_TYPE);
}

/* constrict value based on lenght modifier */
/* constrict value based on length modifier */
switch (length_modifier) {
case LENGTH_NONE:
value = (unsigned int) value;
Expand Down