| Index: cderror.h
|
| diff --git a/cderror.h b/cderror.h
|
| index e19c475c5c5cd8d326cbd34859f46eb6a0bbef81..63de498f779f3ece054600c68df6a2dc3254c7a2 100644
|
| --- a/cderror.h
|
| +++ b/cderror.h
|
| @@ -4,7 +4,8 @@
|
| * Copyright (C) 1994-1997, Thomas G. Lane.
|
| * Modified 2009 by Guido Vollbeding.
|
| * 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 defines the error and message codes for the cjpeg/djpeg
|
| * applications. These strings are not needed as part of the JPEG library
|
| @@ -33,7 +34,7 @@
|
|
|
| typedef enum {
|
|
|
| -#define JMESSAGE(code,string) code ,
|
| +#define JMESSAGE(code,string) code ,
|
|
|
| #endif /* JMAKE_ENUM_LIST */
|
|
|
| @@ -62,7 +63,7 @@ JMESSAGE(JERR_GIF_IMAGENOTFOUND, "Too few images in GIF file")
|
| JMESSAGE(JERR_GIF_NOT, "Not a GIF file")
|
| JMESSAGE(JTRC_GIF, "%ux%ux%d GIF image")
|
| JMESSAGE(JTRC_GIF_BADVERSION,
|
| - "Warning: unexpected GIF version number '%c%c%c'")
|
| + "Warning: unexpected GIF version number '%c%c%c'")
|
| JMESSAGE(JTRC_GIF_EXTENSION, "Ignoring GIF extension block of type 0x%02x")
|
| JMESSAGE(JTRC_GIF_NONSQUARE, "Caution: nonsquare pixels in input")
|
| JMESSAGE(JWRN_GIF_BADDATA, "Corrupt data in GIF file")
|
| @@ -74,6 +75,7 @@ JMESSAGE(JWRN_GIF_NOMOREDATA, "Ran out of GIF bits")
|
| #ifdef PPM_SUPPORTED
|
| JMESSAGE(JERR_PPM_COLORSPACE, "PPM output must be grayscale or RGB")
|
| JMESSAGE(JERR_PPM_NONNUMERIC, "Nonnumeric data in PPM file")
|
| +JMESSAGE(JERR_PPM_TOOLARGE, "Integer value too large in PPM file")
|
| JMESSAGE(JERR_PPM_NOT, "Not a PPM/PGM file")
|
| JMESSAGE(JTRC_PGM, "%ux%u PGM image")
|
| JMESSAGE(JTRC_PGM_TEXT, "%ux%u text PGM image")
|
| @@ -110,13 +112,13 @@ JMESSAGE(JERR_TGA_NOTCOMP, "Targa support was not compiled")
|
| #endif /* TARGA_SUPPORTED */
|
|
|
| JMESSAGE(JERR_BAD_CMAP_FILE,
|
| - "Color map file is invalid or of unsupported format")
|
| + "Color map file is invalid or of unsupported format")
|
| JMESSAGE(JERR_TOO_MANY_COLORS,
|
| - "Output file format cannot handle %d colormap entries")
|
| + "Output file format cannot handle %d colormap entries")
|
| JMESSAGE(JERR_UNGETC_FAILED, "ungetc failed")
|
| #ifdef TARGA_SUPPORTED
|
| JMESSAGE(JERR_UNKNOWN_FORMAT,
|
| - "Unrecognized input file format --- perhaps you need -targa")
|
| + "Unrecognized input file format --- perhaps you need -targa")
|
| #else
|
| JMESSAGE(JERR_UNKNOWN_FORMAT, "Unrecognized input file format")
|
| #endif
|
|
|