~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_info.cc

  • Committer: Brian Aker
  • Date: 2010-11-08 17:40:41 UTC
  • mto: (1921.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1916.
  • Revision ID: brian@tangent.org-20101108174041-owap774v8l5vvnl4
Push some functions behind classes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
 
118
118
void mi_report_error(int errcode, const char *file_name)
119
119
{
120
 
  mi_report_error(errcode, file_name);
121
 
}
122
 
 
123
 
void mi_report_error(drizzled::error_t errcode, const char *file_name)
124
 
{
125
120
  size_t        lgt;
126
121
 
127
122
  if ((lgt= strlen(file_name)) > 64)
128
123
    file_name+= lgt - 64;
129
124
  my_error(errcode, MYF(ME_NOREFRESH), file_name);
 
125
  return;
130
126
}
131
127