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