Skip to content

Commit 21eee04

Browse files
committed
Amended README
1 parent d9e9e9a commit 21eee04

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

platform/source/minimal-printf/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Library supports both printf and snprintf in 1252 bytes of flash.
55

66
Prints directly to stdio/UART without using malloc. All flags and precision modifiers are ignored.
7+
There is no error handling if a writing error occurs.
78

89
Supports:
910
* %d: signed integer [h, hh, (none), l, ll, z, j, t].

platform/source/minimal-printf/mbed_printf_implementation.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ static void mbed_minimal_putchar(char *buffer, size_t length, int *result, char
126126
if (buffer) {
127127
buffer[*result] = data;
128128
} else {
129-
/* print character to stdout or file */
130129
if (stream) {
131130
fputc(data, stream);
132131
}

0 commit comments

Comments
 (0)