aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-10 18:06:27 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-10 18:06:27 +0000
commit7aac663d0d8f20cb607c84a9c09b5c53e1aff319 (patch)
tree067e591c95b8e984635e0f6549f984ff539ec55f
parent5957e145cb61771125803b4e6a4585c07be1aa46 (diff)
downloadlibmicrohttpd-7aac663d0d8f20cb607c84a9c09b5c53e1aff319.tar.gz
libmicrohttpd-7aac663d0d8f20cb607c84a9c09b5c53e1aff319.zip
mhd_threads.h: Fixed typo in macro.
-rw-r--r--src/microhttpd/mhd_threads.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/mhd_threads.h b/src/microhttpd/mhd_threads.h
index 01a7f5f0..58fe4015 100644
--- a/src/microhttpd/mhd_threads.h
+++ b/src/microhttpd/mhd_threads.h
@@ -58,7 +58,7 @@
58 58
59#ifndef MHD_NO_THREAD_NAMES 59#ifndef MHD_NO_THREAD_NAMES
60# if defined(MHD_USE_POSIX_THREADS) 60# if defined(MHD_USE_POSIX_THREADS)
61# if defined(HAVE_PTHREAD_SETNAME_NP_GNU) || defined(HAVE_PTHREAD_SET_NAME_NP_FREEBSD) \ 61# if defined(HAVE_PTHREAD_SETNAME_NP_GNU) || defined(HAVE_PTHREAD_SET_NAME_NP_FREEBSD) || \
62 defined(HAVE_PTHREAD_SETNAME_NP_DARWIN) || defined(HAVE_PTHREAD_SETNAME_NP_NETBSD) 62 defined(HAVE_PTHREAD_SETNAME_NP_DARWIN) || defined(HAVE_PTHREAD_SETNAME_NP_NETBSD)
63# define MHD_USE_THREAD_NAME_ 63# define MHD_USE_THREAD_NAME_
64# endif /* HAVE_PTHREAD_SETNAME_NP */ 64# endif /* HAVE_PTHREAD_SETNAME_NP */