Index: jcapistd.c |
diff --git a/jcapistd.c b/jcapistd.c |
index c0320b1b190f5b3b14e9f903bcd0a5cba8c84ef2..5c6d0be255c64f9a3f1dfdb1ab7f050c4ed0c5d9 100644 |
--- a/jcapistd.c |
+++ b/jcapistd.c |
@@ -3,7 +3,8 @@ |
* |
* Copyright (C) 1994-1996, Thomas G. Lane. |
* This file is part of the Independent JPEG Group's software. |
- * For conditions of distribution and use, see the accompanying README file. |
+ * For conditions of distribution and use, see the accompanying README.ijg |
+ * file. |
* |
* This file contains application interface code for the compression half |
* of the JPEG library. These are the "standard" API routines that are |
@@ -41,7 +42,7 @@ jpeg_start_compress (j_compress_ptr cinfo, boolean write_all_tables) |
ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state); |
if (write_all_tables) |
- jpeg_suppress_tables(cinfo, FALSE); /* mark all tables to be written */ |
+ jpeg_suppress_tables(cinfo, FALSE); /* mark all tables to be written */ |
/* (Re)initialize error mgr and destination modules */ |
(*cinfo->err->reset_error_mgr) ((j_common_ptr) cinfo); |
@@ -75,7 +76,7 @@ jpeg_start_compress (j_compress_ptr cinfo, boolean write_all_tables) |
GLOBAL(JDIMENSION) |
jpeg_write_scanlines (j_compress_ptr cinfo, JSAMPARRAY scanlines, |
- JDIMENSION num_lines) |
+ JDIMENSION num_lines) |
{ |
JDIMENSION row_ctr, rows_left; |
@@ -118,7 +119,7 @@ jpeg_write_scanlines (j_compress_ptr cinfo, JSAMPARRAY scanlines, |
GLOBAL(JDIMENSION) |
jpeg_write_raw_data (j_compress_ptr cinfo, JSAMPIMAGE data, |
- JDIMENSION num_lines) |
+ JDIMENSION num_lines) |
{ |
JDIMENSION lines_per_iMCU_row; |