From f7e4b797a82df80b660fb0c71abcbd02e23ac256 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Thu, 14 May 2020 19:57:43 +0000 Subject: [PATCH] Obs! Change back to `g_unix_output_stream_new()` for non-Win32. --- gi-dump-types.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gi-dump-types.c b/gi-dump-types.c index f7c39fda0..bac32f2b6 100644 --- a/gi-dump-types.c +++ b/gi-dump-types.c @@ -17,7 +17,7 @@ main (int argc, #if defined(G_OS_WIN32) Stdout = g_win32_output_stream_new (1, FALSE); #else - Stdout = g_output_stream (1, FALSE); + Stdout = g_unix_output_stream_new (1, FALSE); #endif self = g_module_open (NULL, 0);