~patrick-crews/drizzle/qp-merge2

« back to all changes in this revision

Viewing changes to plugin/innobase/log/log0log.cc

  • Committer: Patrick Crews
  • Date: 2012-02-20 22:04:21 UTC
  • mfrom: (2483.1.30 drizzle)
  • Revision ID: gleebix@gmail.com-20120220220421-9a77n2wnglo211r0
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
613
613
        offset = (gr_lsn_size_offset + difference) % group_size;
614
614
 
615
615
        /* Offset must be < 4 GB on 32 bit systems */
616
 
        ut_a((sizeof(ulint) == 4) || (offset < (((ib_int64_t) 1) << 32)));
 
616
        ut_a((sizeof(ulint) != 4) || (offset < (((ib_int64_t) 1) << 32)));
617
617
 
618
618
        /* fprintf(stderr,
619
619
        "Offset is %lu gr_lsn_offset is %lu difference is %lu\n",