~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_iocache2.cc

  • Committer: Monty Taylor
  • Date: 2009-02-21 03:33:30 UTC
  • mfrom: (895 drizzle)
  • mto: (896.2.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 898.
  • Revision ID: mordred@inaugust.com-20090221033330-v110f94679dej04p
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
394
394
      if (*fmt == 'd')
395
395
        length2= (size_t) (int10_to_str((long) iarg,buff, -10) - buff);
396
396
      else
397
 
        length2= (uint) (int10_to_str((long) (uint) iarg,buff,10)- buff);
 
397
        length2= (uint32_t) (int10_to_str((long) (uint32_t) iarg,buff,10)- buff);
398
398
 
399
399
      /* minimum width padding */
400
400
      if (minimum_width > length2)