fix return value in process_jpeg_image(). REL_0_31

Thu, 20 Mar 2003 08:32:16 +0000

author
eric
date
Thu, 20 Mar 2003 08:32:16 +0000
changeset 150
17531d20e477
parent 149
460c336ec8d7
child 151
83a99cc69861

fix return value in process_jpeg_image().

tumble_jpeg.c file | annotate | diff | revisions
     1.1 diff -r 460c336ec8d7 -r 17531d20e477 tumble_jpeg.c
     1.2 --- a/tumble_jpeg.c	Thu Mar 20 08:26:18 2003 +0000
     1.3 +++ b/tumble_jpeg.c	Thu Mar 20 08:32:16 2003 +0000
     1.4 @@ -1,7 +1,7 @@
     1.5  /*
     1.6   * tumble: build a PDF file from image files
     1.7   *
     1.8 - * $Id: tumble_jpeg.c,v 1.2 2003/03/19 23:53:09 eric Exp $
     1.9 + * $Id: tumble_jpeg.c,v 1.3 2003/03/20 00:32:16 eric Exp $
    1.10   * Copyright 2003 Eric Smith <eric@brouhaha.com>
    1.11   *
    1.12   * This program is free software; you can redistribute it and/or modify
    1.13 @@ -169,7 +169,7 @@
    1.14  			image_info->height_samples,
    1.15  			jpeg_f);
    1.16  
    1.17 -  return (page);
    1.18 +  return (1);
    1.19  }
    1.20  
    1.21