~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/log_event.h

  • Committer: Brian Aker
  • Date: 2008-07-07 14:25:25 UTC
  • mto: (77.1.25 codestyle)
  • mto: This revision was merged to the branch mainline in revision 82.
  • Revision ID: brian@tangent.org-20080707142525-xzy2nl3ie2ebwfln
LL() cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
458
458
 
459
459
/* Shouldn't be defined before */
460
460
#define EXPECTED_OPTIONS \
461
 
  ((ULL(1) << 14) | (ULL(1) << 26) | (ULL(1) << 27) | (ULL(1) << 19))
 
461
  ((1ULL << 14) | (1ULL << 26) | (1ULL << 27) | (1ULL << 19))
462
462
 
463
463
#if OPTIONS_WRITTEN_TO_BIN_LOG != EXPECTED_OPTIONS
464
464
#error OPTIONS_WRITTEN_TO_BIN_LOG must NOT change their values!