diff options
author | Emil Velikov <[email protected]> | 2015-03-16 15:00:18 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-03-25 21:35:32 +0000 |
commit | 0410d9b18646948c9d1e11592589d98b298e7b34 (patch) | |
tree | dc8841f6d067dbf84437628147a6b20eb286f120 | |
parent | af3e6e28580b7c1cc6899f77d6a1b6db9b05e0e9 (diff) |
auxiliary/os: fix the android build - s/drm_munmap/os_munmap/
Squash this silly typo introduced with commit c63eb5dd5ec(auxiliary/os: get
the mmap/munmap wrappers working with android)
Cc: "10.4 10.5" <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
(cherry picked from commit 55f0c0a29f788c5df4820e81c0cf93613ccedf5e)
-rw-r--r-- | src/gallium/auxiliary/os/os_mman.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/os/os_mman.h b/src/gallium/auxiliary/os/os_mman.h index 19c9a5b81f5..3fc8c432f80 100644 --- a/src/gallium/auxiliary/os/os_mman.h +++ b/src/gallium/auxiliary/os/os_mman.h @@ -70,8 +70,8 @@ static INLINE void *os_mmap(void *addr, size_t length, int prot, int flags, return __mmap2(addr, length, prot, flags, fd, (size_t) (offset >> 12)); } -# define drm_munmap(addr, length) \ - munmap(addr, length) +# define os_munmap(addr, length) \ + munmap(addr, length) #else /* assume large file support exists */ |