From 99b77e751af9ae7f0a1395f93aae8b885706c859 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sun, 5 Jun 2016 17:28:40 -0700 Subject: [PATCH] Use bool instead of gboolean --- sshfs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sshfs.c b/sshfs.c index 5adb290..6c4272b 100644 --- a/sshfs.c +++ b/sshfs.c @@ -18,6 +18,7 @@ # include #endif #include +#include #include #include #include @@ -1891,7 +1892,7 @@ static int sftp_request_send(uint8_t type, struct iovec *iov, size_t count, err = -EIO; if (sftp_send_iov(type, req->id, iov, count) == -1) { - gboolean rmed; + bool rmed; pthread_mutex_lock(&sshfs.lock); rmed = !!request_table_lookup(&sshfs.reqtab, req->id); -- 2.13.2