From: Jonas Fonseca Date: Mon, 9 Feb 2009 03:01:48 +0000 (+0100) Subject: Fix io_strerror return type X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=72d8aa701171e6cf7332d6f3c21b4d945c35254e;p=tig.git Fix io_strerror return type --- diff --git a/tig.c b/tig.c index 613a734..cb6bd5d 100644 --- a/tig.c +++ b/tig.c @@ -557,7 +557,7 @@ io_error(struct io *io) return io->error; } -static bool +static char * io_strerror(struct io *io) { return strerror(io->error);