~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_tblmap.cc

  • Committer: Brian Aker
  • Date: 2008-10-06 05:57:49 UTC
  • Revision ID: brian@tangent.org-20081006055749-svg700gciuqi0zu1
Remove all of uchar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
    m_free= m_free->next;
93
93
  }
94
94
  else
95
 
    hash_delete(&m_table_ids,(uchar *)e);
 
95
    hash_delete(&m_table_ids,(unsigned char *)e);
96
96
 
97
97
  e->table_id= table_id;
98
98
  e->table= table;
99
 
  my_hash_insert(&m_table_ids,(uchar *)e);
 
99
  my_hash_insert(&m_table_ids,(unsigned char *)e);
100
100
 
101
101
  return(0);            // All OK
102
102
}
106
106
  entry *e= find_entry(table_id);
107
107
  if (e)
108
108
  {
109
 
    hash_delete(&m_table_ids,(uchar *)e);
 
109
    hash_delete(&m_table_ids,(unsigned char *)e);
110
110
    /* we add this entry to the chain of free (free for use) entries */
111
111
    e->next= m_free;
112
112
    m_free= e;