about summary refs log tree commit diff
path: root/converter/other/giftopnm.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2019-12-30 05:05:58 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2019-12-30 05:05:58 +0000
commit4b896dbdd5d76d1457f67b04c0903d4210cea874 (patch)
tree29ee6394de1647061d56bbe710d9a88478e58410 /converter/other/giftopnm.c
parentef169d7bad450fd906e843169278c693730a8b2b (diff)
downloadnetpbm-mirror-4b896dbdd5d76d1457f67b04c0903d4210cea874.tar.gz
netpbm-mirror-4b896dbdd5d76d1457f67b04c0903d4210cea874.tar.xz
netpbm-mirror-4b896dbdd5d76d1457f67b04c0903d4210cea874.zip
Fix typos in comments and messages, whitespace
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3728 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/giftopnm.c')
-rw-r--r--converter/other/giftopnm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/other/giftopnm.c b/converter/other/giftopnm.c
index e2d5923d..470c85b7 100644
--- a/converter/other/giftopnm.c
+++ b/converter/other/giftopnm.c
@@ -867,7 +867,7 @@ termStack(struct Stack * const stackP) {
 
    What we call 'dataWidth', others call the "minimum code size," which is a
    misnomer, because the minimum code size in a stream must be at least one
-   more than 'dataWidth', to accomodate the clear and end codes.
+   more than 'dataWidth', to accommmodate the clear and end codes.
 -----------------------------------------------------------------------------*/
 
 static int const maxLzwCodeCt = (1<<MAX_LZW_BITS);
@@ -1722,7 +1722,7 @@ readImageData(FILE *       const ifP,
         pm_error("Invalid data width (bits for a true data item) "
                  "in image data: %u.  "
                  "Maximum allowable code size in GIF is %u, "
-                 "and a code has to be wide enough to accomodate both "
+                 "and a code has to be wide enough to accommodate both "
                  "all possible data values and two control codes",
                  lzwDataWidth, MAX_LZW_BITS);