From 5116c1a3478694d7675235b217a4b5b4f034f967 Mon Sep 17 00:00:00 2001 From: Frode Solheim Date: Sat, 5 Sep 2015 16:51:44 +0200 Subject: [PATCH] consolehook: missing parameter (presumably supposed to be stdout) --- consolehook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consolehook.cpp b/consolehook.cpp index 8fd32b5f..8002fa36 100644 --- a/consolehook.cpp +++ b/consolehook.cpp @@ -106,7 +106,7 @@ uaecptr consolehook_beginio (uaecptr request) buf = xmalloc (TCHAR, len + 1); au_copy (buf, len, src); buf[len] = 0; - f_out (_T("%s"), buf); + f_out (stdout, _T("%s"), buf); xfree (buf); } else if (cmd == CMD_READ) { -- 2.47.3