~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Monty Taylor
  • Date: 2009-01-09 23:59:01 UTC
  • mto: (801.1.3 testable) (779.3.2 devel)
  • mto: This revision was merged to the branch mainline in revision 784.
  • Revision ID: mordred@inaugust.com-20090109235901-vo05hpzwkvnvrex6
Changed a cast from C-style to C++-style.

Show diffs side-by-side

added added

removed removed

Lines of Context:
618
618
 
619
619
static void free_cache_entry(void *entry)
620
620
{
621
 
  Table *table= (Table *)entry;
 
621
  Table *table= static_cast<Table *>(entry);
622
622
  intern_close_table(table);
623
623
  if (!table->in_use)
624
624
  {