another case which should use CURLcode and not int
authorDaniel Stenberg <daniel@haxx.se>
Sun, 15 Feb 2004 13:58:57 +0000 (13:58 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 15 Feb 2004 13:58:57 +0000 (13:58 +0000)
lib/content_encoding.c

index 496af07..a2b357b 100644 (file)
@@ -74,7 +74,7 @@ Curl_unencode_deflate_write(struct SessionHandle *data,
                             ssize_t nread)
 {
   int status;                   /* zlib status */
-  CURLcode result = CURLE_OK; /*?*/  /* Curl_client_write status */
+  CURLcode result = CURLE_OK;   /* Curl_client_write status */
   char decomp[DSIZ];            /* Put the decompressed data here. */
   z_stream *z = &k->z;          /* zlib state structure */
 
@@ -218,7 +218,7 @@ Curl_unencode_gzip_write(struct SessionHandle *data,
                          ssize_t nread)
 {
   int status;                   /* zlib status */
-  int result = CURLE_OK; /*?*/  /* Curl_client_write status */
+  CURLcode result = CURLE_OK;   /* Curl_client_write status */
   char decomp[DSIZ];            /* Put the decompressed data here. */
   z_stream *z = &k->z;          /* zlib state structure */