~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_rfirst.c

  • Committer: Monty Taylor
  • Date: 2008-07-16 19:10:24 UTC
  • mfrom: (51.1.127 remove-dbug)
  • mto: This revision was merged to the branch mainline in revision 176.
  • Revision ID: monty@inaugust.com-20080716191024-prjgoh7fbri7rx26
MergedĀ fromĀ remove-dbug.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
int mi_rfirst(MI_INFO *info, uchar *buf, int inx)
21
21
{
22
 
  DBUG_ENTER("mi_rfirst");
23
22
  info->lastpos= HA_OFFSET_ERROR;
24
23
  info->update|= HA_STATE_PREV_FOUND;
25
 
  DBUG_RETURN(mi_rnext(info,buf,inx));
 
24
  return(mi_rnext(info,buf,inx));
26
25
} /* mi_rfirst */