~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to mysys/my_seek.c

Merged from codestyle.

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