]> wimlib.net Git - wimlib/blobdiff - include/wimlib/chunk_compressor.h
chunk_compressor: Use u32 for chunk uncompressed size
[wimlib] / include / wimlib / chunk_compressor.h
index b902038a393b2556b07a80f1836a5d8dbd3a9a29..96954637a8ef50df3cc0315a51ccbd7414bf1557 100644 (file)
@@ -32,7 +32,7 @@ struct chunk_compressor {
         * %false if the chunk compressor does not have space for the chunk at
         * the present time.  In the latter case, get_chunk() must be called to
         * retrieve a compressed chunk before trying again.  */
         * %false if the chunk compressor does not have space for the chunk at
         * the present time.  In the latter case, get_chunk() must be called to
         * retrieve a compressed chunk before trying again.  */
-       bool (*submit_chunk)(struct chunk_compressor *, const void *, size_t);
+       bool (*submit_chunk)(struct chunk_compressor *, const void *, u32);
 
        /* Get the next chunk of compressed data.
         *
 
        /* Get the next chunk of compressed data.
         *