From ea1978896ea96efc71544366124a8e1ddbfcb0ce Mon Sep 17 00:00:00 2001 From: DRC Date: Thu, 18 Feb 2010 05:12:58 +0000 Subject: [PATCH] dumpbuf() should have void return type git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@123 632fc199-4ca6-4c93-a231-07263d6284db --- jpegut.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jpegut.c b/jpegut.c index 91b3641..cec0f72 100644 --- a/jpegut.c +++ b/jpegut.c @@ -73,7 +73,7 @@ void initbuf(unsigned char *buf, int w, int h, int ps, int flags) } } -int dumpbuf(unsigned char *buf, int w, int h, int ps, int flags) +void dumpbuf(unsigned char *buf, int w, int h, int ps, int flags) { int roffset=(flags&TJ_BGR)?2:0, goffset=1, boffset=(flags&TJ_BGR)?0:2, i, j; -- 2.40.0