~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Brian Aker
  • Date: 2010-03-04 16:54:08 UTC
  • mto: This revision was merged to the branch mainline in revision 1322.
  • Revision ID: brian@gaz-20100304165408-tllcoe3qzjgd4aii
Small style issue.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1400
1400
  uint32_t error= ER_NO_SUCH_THREAD;
1401
1401
  pthread_mutex_lock(&LOCK_thread_count); // For unlink from list
1402
1402
  
1403
 
  for( vector<Session*>::iterator it= getSessionList().begin(); it != getSessionList().end(); ++it )
 
1403
  for (SessionList::iterator it= getSessionList().begin(); it != getSessionList().end(); ++it )
1404
1404
  {
1405
1405
    if ((*it)->thread_id == id)
1406
1406
    {