From e251c67ef72ebb51d8bf81ee4ddfbf883124ce7e Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Tue, 3 May 2016 14:13:03 +0300 Subject: [PATCH] (feed_subshell): change type of fail_on_error from int to gboolean. Signed-off-by: Andrew Borodin --- src/subshell/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/subshell/common.c b/src/subshell/common.c index 8e54e7258..6667b6e59 100644 --- a/src/subshell/common.c +++ b/src/subshell/common.c @@ -493,7 +493,7 @@ synchronize (void) /** Feed the subshell our keyboard input until it says it's finished */ static gboolean -feed_subshell (int how, int fail_on_error) +feed_subshell (int how, gboolean fail_on_error) { fd_set read_set; /* For 'select' */ int bytes; /* For the return value from 'read' */