From a5f8071bdf7893ef487c677b460793e8bef55402 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 11 Nov 2020 16:14:05 +1100 Subject: Cleanup: use bool for imbuf save callbacks --- source/blender/imbuf/intern/targa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/imbuf/intern/targa.c') diff --git a/source/blender/imbuf/intern/targa.c b/source/blender/imbuf/intern/targa.c index 0efc8dee2db..6d156a637d3 100644 --- a/source/blender/imbuf/intern/targa.c +++ b/source/blender/imbuf/intern/targa.c @@ -294,7 +294,7 @@ static bool dumptarga(struct ImBuf *ibuf, FILE *file) return 1; } -int imb_savetarga(struct ImBuf *ibuf, const char *filepath, int UNUSED(flags)) +bool imb_savetarga(struct ImBuf *ibuf, const char *filepath, int UNUSED(flags)) { char buf[TARGA_HEADER_SIZE] = {0}; FILE *fildes; -- cgit v1.2.3