~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_seek.c

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
  register os_off_t newpos= -1;
49
49
  DBUG_ENTER("my_seek");
50
50
  DBUG_PRINT("my",("Fd: %d  Hpos: %lu  Pos: %lu  Whence: %d  MyFlags: %d",
51
 
                   fd, (ulong) (((ulonglong) pos) >> 32), (ulong) pos, 
 
51
                   fd, (ulong) (((uint64_t) pos) >> 32), (ulong) pos, 
52
52
                   whence, MyFlags));
53
53
  DBUG_ASSERT(pos != MY_FILEPOS_ERROR);         /* safety check */
54
54