1
0
mirror of synced 2026-01-13 07:20:22 +00:00

fix return value in process_jpeg_image().

This commit is contained in:
Eric Smith 2003-03-20 08:32:16 +00:00
parent 1f6e70d6b7
commit 2582aa64a8

View File

@ -1,7 +1,7 @@
/*
* tumble: build a PDF file from image files
*
* $Id: tumble_jpeg.c,v 1.2 2003/03/19 23:53:09 eric Exp $
* $Id: tumble_jpeg.c,v 1.3 2003/03/20 00:32:16 eric Exp $
* Copyright 2003 Eric Smith <eric@brouhaha.com>
*
* This program is free software; you can redistribute it and/or modify
@ -169,7 +169,7 @@ bool process_jpeg_image (int image, /* range 1 .. n */
image_info->height_samples,
jpeg_f);
return (page);
return (1);
}