diff options
author | unknown <rafal@quant.(none)> | 2006-12-08 19:23:12 +0100 |
---|---|---|
committer | unknown <rafal@quant.(none)> | 2006-12-08 19:23:12 +0100 |
commit | a79858049e3b00b13879e79f4379d9e90de775f4 (patch) | |
tree | 06afdb6d32e9248e7c050b2b7b0a44627656e207 /include | |
parent | 42b2cb86132291d7c69eff8fbcff71e2d4228794 (diff) | |
download | mariadb-git-a79858049e3b00b13879e79f4379d9e90de775f4.tar.gz |
Minor fix
include/my_pthread.h:
Fixed missing \ in #if directive.
Diffstat (limited to 'include')
-rw-r--r-- | include/my_pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h index 8051d75c59e..24f3fd62b8e 100644 --- a/include/my_pthread.h +++ b/include/my_pthread.h @@ -45,7 +45,7 @@ extern "C" { TODO: Remove this code when fixed versions of glibc6 are in common use. */ -#if defined(TARGET_OS_LINUX) && defined(HAVE_NPTL) && +#if defined(TARGET_OS_LINUX) && defined(HAVE_NPTL) && \ defined(__GLIBC__) && ( __GLIBC__ < 2 || __GLIBC__ == 2 && __GLIBC_MINOR__ < 5 ) #define NPTL_PTHREAD_EXIT_BUG 1 #endif |