Update doc
This commit is contained in:
parent
a7501609e8
commit
1039dc59ea
|
@ -2989,7 +2989,7 @@ typedef enum {
|
||||||
* int inflate_header_block(nghttp2_hd_inflater *hd_inflater,
|
* int inflate_header_block(nghttp2_hd_inflater *hd_inflater,
|
||||||
* uint8_t *in, size_t inlen, int final)
|
* uint8_t *in, size_t inlen, int final)
|
||||||
* {
|
* {
|
||||||
* int rv;
|
* ssize_t rv;
|
||||||
*
|
*
|
||||||
* for(;;) {
|
* for(;;) {
|
||||||
* nghttp2_nv nv;
|
* nghttp2_nv nv;
|
||||||
|
@ -2999,7 +2999,7 @@ typedef enum {
|
||||||
* in, inlen, final);
|
* in, inlen, final);
|
||||||
*
|
*
|
||||||
* if(rv < 0) {
|
* if(rv < 0) {
|
||||||
* fprintf(stderr, "inflate failed with error code %d", rv);
|
* fprintf(stderr, "inflate failed with error code %zd", rv);
|
||||||
* return -1;
|
* return -1;
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue