From 7a4b76d02e265e4febca4052be1d71d16fc228d5 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 cb2f554..1433d4a 100644 --- a/sshfs.c +++ b/sshfs.c @@ -18,6 +18,7 @@ # include #endif #include +#include #include #include #include @@ -1895,7 +1896,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.14.3