Skip to content

Commit 436853b

Browse files
authored
Merge pull request matplotlib#20349 from anntzer/ttp
Fix missing write in TTStreamWriter::printf.
2 parents a56da4a + f8544fe commit 436853b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

extern/ttconv/ttutil.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ void TTStreamWriter::printf(const char* format, ...)
4545
#else
4646
vsnprintf(buffer2, size, format, arg_list);
4747
#endif
48+
this->write(buffer2);
4849
free(buffer2);
4950
} else {
5051
this->write(buffer);

0 commit comments

Comments
 (0)