diff options
author | unknown <jcole@tetra.spaceapes.com> | 2001-02-01 06:25:51 -0600 |
---|---|---|
committer | unknown <jcole@tetra.spaceapes.com> | 2001-02-01 06:25:51 -0600 |
commit | b49b815ab49834d832a6d455f12768fabd88a4ef (patch) | |
tree | 98bfb4ece1b6a4159517fbff6c241042a793dc73 /mysys | |
parent | 0e30cd0996dc40e395dc8bbd3f2a7ce7a2e0b269 (diff) | |
download | mariadb-git-b49b815ab49834d832a6d455f12768fabd88a4ef.tar.gz |
Changes prompted by manual comments.
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/thr_alarm.c | 2 | ||||
-rw-r--r-- | mysys/thr_lock.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysys/thr_alarm.c b/mysys/thr_alarm.c index 72515932141..09928079eaa 100644 --- a/mysys/thr_alarm.c +++ b/mysys/thr_alarm.c @@ -689,7 +689,7 @@ static void *test_thread(void *arg) fd_set fd; FD_ZERO(&fd); my_thread_init(); - printf("Tread %d (%s) started\n",param,my_thread_name()); fflush(stdout); + printf("Thread %d (%s) started\n",param,my_thread_name()); fflush(stdout); for (i=1 ; i <= 10 ; i++) { wait_time=param ? 11-i : i; diff --git a/mysys/thr_lock.c b/mysys/thr_lock.c index 348c7bae74f..2e20d3e24c0 100644 --- a/mysys/thr_lock.c +++ b/mysys/thr_lock.c @@ -1189,7 +1189,7 @@ static void *test_thread(void *arg) thr_multi_unlock(multi_locks,lock_counts[param]); } - printf("Tread %s (%d) ended\n",my_thread_name(),param); fflush(stdout); + printf("Thread %s (%d) ended\n",my_thread_name(),param); fflush(stdout); thr_print_locks(); pthread_mutex_lock(&LOCK_thread_count); thread_count--; |