diff options
author | monty@hundin.mysql.fi <> | 2002-04-24 15:23:32 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-04-24 15:23:32 +0300 |
commit | 1f5f3612f30d67029fe9cc2ff5d5e44daa5698f2 (patch) | |
tree | 79b32cfbee538d0d4db28eeb309cb763f4772623 /mysys | |
parent | 3ede1596a06f73060ad3feda16703a87323f3a1f (diff) | |
download | mariadb-git-1f5f3612f30d67029fe9cc2ff5d5e44daa5698f2.tar.gz |
Fixed syntax error in mysql.cc
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/my_thr_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/my_thr_init.c b/mysys/my_thr_init.c index 5b137df20f8..0bd542d2bd9 100644 --- a/mysys/my_thr_init.c +++ b/mysys/my_thr_init.c @@ -105,7 +105,7 @@ static long thread_id=0; my_bool my_thread_init(void) { struct st_my_thread_var *tmp; -#ifdef EXTRA_DEBUG +#ifdef EXTRA_DEBUG_THREADS fprintf(stderr,"my_thread_init(): thread_id=%ld\n",pthread_self()); #endif #if !defined(__WIN__) || defined(USE_TLS) || ! defined(SAFE_MUTEX) @@ -152,7 +152,7 @@ end: void my_thread_end(void) { struct st_my_thread_var *tmp=my_thread_var; -#ifdef EXTRA_DEBUG +#ifdef EXTRA_DEBUG_THREADS fprintf(stderr,"my_thread_end(): tmp=%p,thread_id=%ld\n", tmp,pthread_self()); #endif |