~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_info.cc

  • Committer: Brian Aker
  • Date: 2011-02-14 05:47:07 UTC
  • mto: This revision was merged to the branch mainline in revision 2167.
  • Revision ID: brian@tangent.org-20110214054707-61nsqgg1g4w1zhx1
Merge in all changes for current_session, etc.

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
{
120
125
  size_t        lgt;
121
126
 
122
127
  if ((lgt= strlen(file_name)) > 64)
123
128
    file_name+= lgt - 64;
124
129
  my_error(errcode, MYF(ME_NOREFRESH), file_name);
125
 
  return;
126
130
}
127
131