~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_fstream.cc

  • Committer: Monty Taylor
  • Date: 2008-12-01 17:53:42 UTC
  • mto: This revision was merged to the branch mainline in revision 637.
  • Revision ID: monty@bitters-20081201175342-hcvfaecqmljhv86g
Fixed Sun Studio warnings in mysys.

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
 
113
113
/* Seek to position in file */
114
114
 
115
 
my_off_t my_fseek(FILE *stream, my_off_t pos, int whence,
116
 
                  myf MyFlags __attribute__((unused)))
 
115
my_off_t my_fseek(FILE *stream, my_off_t pos, int whence, myf)
117
116
{
118
 
  return(fseek(stream, (off_t) pos, whence) ?
 
117
  return(fseeko(stream, (off_t) pos, whence) ?
119
118
              MY_FILEPOS_ERROR : (my_off_t) ftell(stream));
120
119
} /* my_seek */