From c389f9e75ebbac346eb8bf7ea0f788bc86a90187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Thu, 21 Mar 2024 04:38:00 +0100 Subject: win32: change fputs to fwrite wrapper Removes mp_puts/mp_fputs and adds mp_fwrite. In fact I wanted fwrite instead of puts, no need to make it more awkward with the implicit new lines. Fixes: fc55f355fc8225328cf0472e3deb4021eba96303 --- osdep/terminal-dummy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'osdep/terminal-dummy.c') diff --git a/osdep/terminal-dummy.c b/osdep/terminal-dummy.c index 8ab9d6f444..8ae6c64827 100644 --- a/osdep/terminal-dummy.c +++ b/osdep/terminal-dummy.c @@ -32,7 +32,7 @@ int mp_console_vfprintf(void *wstream, const char *format, va_list args) return 0; } -int mp_console_fputs(void *wstream, bstr str) +int mp_console_write(void *wstream, bstr str) { return 0; } -- cgit v1.2.3