aboutsummaryrefslogtreecommitdiff
path: root/jpegut.c
diff options
context:
space:
mode:
authordcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2010-02-18 05:12:58 +0000
committerdcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2010-02-18 05:12:58 +0000
commita7bf6449decedf00ef98e6b52e45160a4d29e29b (patch)
treeb5b318a67a3bef6a4c9753c1f8881cc09e9b5968 /jpegut.c
parent42ac6534002f32a4ad58ff6c1a863282cfffca88 (diff)
dumpbuf() should have void return type
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@123 632fc199-4ca6-4c93-a231-07263d6284db
Diffstat (limited to 'jpegut.c')
-rw-r--r--jpegut.c2
1 files changed, 1 insertions, 1 deletions
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;