From d19c7962600cde319ede932f162e24bf8391d65c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sat, 25 Oct 2014 14:27:10 +0200 Subject: Change return type of text_save --- text.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'text.h') diff --git a/text.h b/text.h index 44c9f69..98d237b 100644 --- a/text.h +++ b/text.h @@ -84,7 +84,7 @@ size_t text_size(Text*); bool text_modified(Text*); /* test whether the underlying file uses UNIX style \n or Windows style \r\n newlines */ bool text_newlines_crnl(Text*); -int text_save(Text*, const char *file); +bool text_save(Text*, const char *file); ssize_t text_write(Text*, int fd); void text_free(Text*); -- cgit v1.2.3