~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_rlast.c

  • Committer: Brian Aker
  • Date: 2008-07-16 21:28:26 UTC
  • mfrom: (77.3.28 glibclient)
  • Revision ID: brian@tangent.org-20080716212826-p44t3u6v1zb0dmxg
Merge from Monty

Show diffs side-by-side

added added

removed removed

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