From f26bf1396557e4bc739d6a7703099f75bfe2fb99 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Mon, 25 Feb 2019 21:08:46 -0500 Subject: fix warning from -Wall --- src/stdio/popen.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/stdio') diff --git a/src/stdio/popen.c b/src/stdio/popen.c index 56fce132..ab9b1663 100644 --- a/src/stdio/popen.c +++ b/src/stdio/popen.c @@ -54,7 +54,10 @@ FILE * popen(const char * command, const char * mode) return NULL; } + #if defined __STDC_VERSION__ fwide(p, -1); + #endif + p->pipe_pid = child; return p; } -- cgit v1.2.1