Merge branch 'rfc/perf' into perf/core, because it's ready for inclusion
[firefly-linux-kernel-4.4.55.git] / include / linux / zlib.h
index 197abb2a54c5d713dd1a909da735bee60ab28d12..92dbbd3f6c757178d66b0b0e3d9f05789a05e02e 100644 (file)
@@ -83,11 +83,11 @@ struct internal_state;
 
 typedef struct z_stream_s {
     const Byte *next_in;   /* next input byte */
-    uInt     avail_in;  /* number of bytes available at next_in */
+       uLong avail_in;  /* number of bytes available at next_in */
     uLong    total_in;  /* total nb of input bytes read so far */
 
     Byte    *next_out;  /* next output byte should be put there */
-    uInt     avail_out; /* remaining free space at next_out */
+       uLong avail_out; /* remaining free space at next_out */
     uLong    total_out; /* total nb of bytes output so far */
 
     char     *msg;      /* last error message, NULL if no error */