diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2021-01-17 21:50:08 -0800 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2021-01-17 21:50:08 -0800 |
commit | 506424c6405d0cf7ea7b9c3316516676f259c665 (patch) | |
tree | 47ea7057ea694c18a42bdf75ce27d2e54bf7e773 | |
parent | 53ce2713117ef2a8ed682d77b944df991c499252 (diff) | |
download | zlib-506424c6405d0cf7ea7b9c3316516676f259c665.tar.gz zlib-506424c6405d0cf7ea7b9c3316516676f259c665.tar.bz2 zlib-506424c6405d0cf7ea7b9c3316516676f259c665.zip |
Correct typo in blast.c.
-rw-r--r-- | contrib/blast/blast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/blast/blast.h b/contrib/blast/blast.h index 6cf65ed..ef8544c 100644 --- a/contrib/blast/blast.h +++ b/contrib/blast/blast.h | |||
@@ -57,7 +57,7 @@ int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow, | |||
57 | * use by the application to pass an input descriptor to infun(), if desired. | 57 | * use by the application to pass an input descriptor to infun(), if desired. |
58 | * | 58 | * |
59 | * If left and in are not NULL and *left is not zero when blast() is called, | 59 | * If left and in are not NULL and *left is not zero when blast() is called, |
60 | * then the *left bytes are *in are consumed for input before infun() is used. | 60 | * then the *left bytes at *in are consumed for input before infun() is used. |
61 | * | 61 | * |
62 | * The output function is invoked: err = outfun(how, buf, len), where the bytes | 62 | * The output function is invoked: err = outfun(how, buf, len), where the bytes |
63 | * to be written are buf[0..len-1]. If err is not zero, then blast() returns | 63 | * to be written are buf[0..len-1]. If err is not zero, then blast() returns |