From 76cf1e01c6881e57340ebdd832c35c5d63e90b85 Mon Sep 17 00:00:00 2001 From: Erik Hofman Date: Mon, 15 Mar 2021 15:16:00 +0100 Subject: [PATCH] Sigh, fix a stupid typo. --- simgear/io/sg_mmap.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/io/sg_mmap.hxx b/simgear/io/sg_mmap.hxx index aa9e4acc..74f5c081 100644 --- a/simgear/io/sg_mmap.hxx +++ b/simgear/io/sg_mmap.hxx @@ -68,7 +68,7 @@ class SGMMapFile : public SGIOChannel { * map 'filename' and return a pointer to it. */ static void *simple_mmap(int, size_t, SIMPLE_UNMMAP *); - static void simple_unmmap(void*, size_t, IMPLE_UNMMAP *); + static void simple_unmmap(void*, size_t, SIMPLE_UNMMAP *); #else # define simple_mmap(a, b, c) mmap(0, (b), PROT_READ, MAP_PRIVATE, (a), 0L) # define simple_unmmap(a, b, c) munmap((a), (b))