1.1 diff -r 692e6411df52 -r ec2a06d8a2a6 semantics.c 1.2 --- a/semantics.c Sun Mar 16 15:40:00 2003 +0000 1.3 +++ b/semantics.c Wed Mar 19 15:39:55 2003 +0000 1.4 @@ -2,7 +2,7 @@ 1.5 * tumble: build a PDF file from image files 1.6 * 1.7 * Semantic routines for spec file parser 1.8 - * $Id: semantics.c,v 1.22 2003/03/16 05:58:25 eric Exp $ 1.9 + * $Id: semantics.c,v 1.23 2003/03/19 07:39:55 eric Exp $ 1.10 * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.11 * 1.12 * This program is free software; you can redistribute it and/or modify 1.13 @@ -667,10 +667,10 @@ 1.14 i = 0; 1.15 input_fn = get_input_filename (image->input_context); 1.16 if (verbose) 1.17 - fprintf (stderr, "opening TIFF file '%s'\n", input_fn); 1.18 - if (! open_tiff_input_file (input_fn)) 1.19 + fprintf (stderr, "opening input file '%s'\n", input_fn); 1.20 + if (! open_input_file (input_fn)) 1.21 { 1.22 - fprintf (stderr, "error opening TIFF file '%s'\n", input_fn); 1.23 + fprintf (stderr, "error opening input file '%s'\n", input_fn); 1.24 return (0); 1.25 } 1.26 }