aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-10-05 22:02:56 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-10-05 22:02:56 +0300
commit74ccb7ae9db4b2c978c377d4af2b5448ff8a4f26 (patch)
tree284f989da0f42f3edaa0d50c29e69c26397a1a21
parent7e364798939f474e3223c0794046d73c129aad45 (diff)
downloadlibmicrohttpd-74ccb7ae9db4b2c978c377d4af2b5448ff8a4f26.tar.gz
libmicrohttpd-74ccb7ae9db4b2c978c377d4af2b5448ff8a4f26.zip
memorypool: fixed typo
-rw-r--r--src/microhttpd/memorypool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/memorypool.c b/src/microhttpd/memorypool.c
index a4207a92..475e4007 100644
--- a/src/microhttpd/memorypool.c
+++ b/src/microhttpd/memorypool.c
@@ -68,7 +68,7 @@
68#if defined(PAGE_SIZE) 68#if defined(PAGE_SIZE)
69#define MHD_DEF_PAGE_SIZE_ PAGE_SIZE 69#define MHD_DEF_PAGE_SIZE_ PAGE_SIZE
70#elif defined(PAGESIZE) 70#elif defined(PAGESIZE)
71#define MHD_DEF_PAGE_SIZE_ PAGE_SIZE 71#define MHD_DEF_PAGE_SIZE_ PAGESIZE
72#else /* ! PAGESIZE */ 72#else /* ! PAGESIZE */
73#define MHD_DEF_PAGE_SIZE_ (4096) 73#define MHD_DEF_PAGE_SIZE_ (4096)
74#endif /* ! PAGESIZE */ 74#endif /* ! PAGESIZE */