]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blobdiff - include/linux/decompress/unlzo.h
initramfs: support initramfs that is bigger than 2GiB
[mirror_ubuntu-artful-kernel.git] / include / linux / decompress / unlzo.h
index 98722975251941deb1f25482d2277bc4640e8569..af18f95d65703e0b16594a288a01bb3a72c30a95 100644 (file)
@@ -1,10 +1,10 @@
 #ifndef DECOMPRESS_UNLZO_H
 #define DECOMPRESS_UNLZO_H
 
-int unlzo(unsigned char *inbuf, int len,
-       int(*fill)(void*, unsigned int),
-       int(*flush)(void*, unsigned int),
+int unlzo(unsigned char *inbuf, long len,
+       long (*fill)(void*, unsigned long),
+       long (*flush)(void*, unsigned long),
        unsigned char *output,
-       int *pos,
+       long *pos,
        void(*error)(char *x));
 #endif