]> git.lizzy.rs Git - zlib.git/commitdiff
Line length cleanup.
authorMark Adler <madler@alumni.caltech.edu>
Mon, 25 Mar 2013 05:30:40 +0000 (22:30 -0700)
committerMark Adler <madler@alumni.caltech.edu>
Mon, 25 Mar 2013 05:30:40 +0000 (22:30 -0700)
inffast.c
zutil.h

index 0d78f23ff84050e2cdf01dd238d4e076720d0df3..dbb275f1cb9f9b87f7d62d40b1cbef8fc4225932 100644 (file)
--- a/inffast.c
+++ b/inffast.c
@@ -70,7 +70,7 @@ unsigned start;         /* inflate()'s starting value for strm->avail_out */
 {
     struct inflate_state FAR *state;
     z_const unsigned char FAR *in;      /* local strm->next_in */
-    z_const unsigned char FAR *last;    /* while in < last, enough input available */
+    z_const unsigned char FAR *last;    /* have enough input while in < last */
     unsigned char FAR *out;     /* local strm->next_out */
     unsigned char FAR *beg;     /* inflate()'s initial strm->next_out */
     unsigned char FAR *end;     /* while out < end, enough space available */
diff --git a/zutil.h b/zutil.h
index 0f02cbecdaddbeeebee04d55eed89005ade81bc9..7340361e5ca5dc048168f73a2075715958591534 100644 (file)
--- a/zutil.h
+++ b/zutil.h
@@ -168,7 +168,8 @@ extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
 #endif
 
 /* provide prototypes for these when building zlib without LFS */
-#if !defined(_WIN32) && (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0)
+#if !defined(_WIN32) && \
+    (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0)
     ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
     ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
 #endif