projects
/
mes.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3fdfed
)
mlibc: Mescc-tools support: fix for [v]fprintf.
author
Jan Nieuwenhuizen
<janneke@gnu.org>
Sat, 2 Dec 2017 07:46:41 +0000
(08:46 +0100)
committer
Jan Nieuwenhuizen
<janneke@gnu.org>
Sat, 2 Dec 2017 07:46:41 +0000
(08:46 +0100)
* lib/libc-mes+tcc.c (vfprintf): Bugfix: print to fd.
lib/libc-mes+tcc.c
patch
|
blob
|
history
diff --git
a/lib/libc-mes+tcc.c
b/lib/libc-mes+tcc.c
index 01d69ccdf0f793a1e52857cfcb05317c61028d48..6969de2b5f2f6d0c96286e0b19405c264e792793 100644
(file)
--- a/
lib/libc-mes+tcc.c
+++ b/
lib/libc-mes+tcc.c
@@
-419,7
+419,7
@@
vfprintf (FILE* f, char const* format, va_list ap)
char const *p = format;
while (*p)
if (*p != '%')
-
putchar (*p++
);
+
fputc (*p++, fd
);
else
{
p++;