List:Commits« Previous MessageNext Message »
From:Davi Arnaut Date:June 11 2008 12:49pm
Subject:bzr commit into mysql-6.0 branch (davi:2650)
View as plain text  
# At a local mysql-6.0 repository of davi

 2650 Davi Arnaut	2008-06-11
      Add missing semicolon.
modified:
  mysys/thr_lock.c

per-file messages:
  mysys/thr_lock.c
    Add missing semicolon.
=== modified file 'mysys/thr_lock.c'
--- a/mysys/thr_lock.c	2008-06-10 12:38:52 +0000
+++ b/mysys/thr_lock.c	2008-06-11 12:49:15 +0000
@@ -336,7 +336,7 @@ void thr_lock_delete(THR_LOCK *lock)
   pthread_mutex_lock(&THR_LOCK_lock);
   thr_lock_thread_list=list_delete(thr_lock_thread_list,&lock->list);
   pthread_mutex_unlock(&THR_LOCK_lock);
-  pthread_mutex_destroy(&lock->mutex)
+  pthread_mutex_destroy(&lock->mutex);
   DBUG_VOID_RETURN;
 }
 

Thread
bzr commit into mysql-6.0 branch (davi:2650) Davi Arnaut11 Jun