~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/data/data0data.c

  • Committer: lbieber
  • Date: 2010-10-07 21:45:06 UTC
  • mfrom: (1816.2.8 intel-warnings-win)
  • mto: This revision was merged to the branch mainline in revision 1822.
  • Revision ID: lbieber@orisndriz08-20101007214506-lnbh033i3v34yr3a
Merge Monty - Fixed the last of the ICC warnings. Turned on warnings=errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
407
407
                case 4:
408
408
                        val = mach_read_from_4(data);
409
409
 
 
410
                        static const ulint UNSIGNED_MASK= 0x80000000;
 
411
 
410
412
                        if (!(prtype & DATA_UNSIGNED)) {
411
 
                                val &= ~0x80000000;
 
413
                                val &= ~UNSIGNED_MASK;
412
414
                                fprintf(stderr, "%ld", (long) val);
413
415
                        } else {
414
416
                                fprintf(stderr, "%lu", (ulong) val);