]> git.proxmox.com Git - libgit2.git/blobdiff - src/map.h
New upstream version 1.1.0+dfsg.1
[libgit2.git] / src / map.h
index 2009c3ab5577bef2f5fb63560ec29f49f989e13f..6328d8cf45e7170742bbd5cd1c270b73643da57f 100644 (file)
--- a/src/map.h
+++ b/src/map.h
@@ -40,7 +40,7 @@ typedef struct { /* memory mapped buffer      */
        assert((prot & GIT_PROT_WRITE) || (prot & GIT_PROT_READ)); \
        assert((flags & GIT_MAP_FIXED) == 0); } while (0)
 
-extern int p_mmap(git_map *out, size_t len, int prot, int flags, int fd, git_off_t offset);
+extern int p_mmap(git_map *out, size_t len, int prot, int flags, int fd, off64_t offset);
 extern int p_munmap(git_map *map);
 
 #endif