~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_iocache2.cc

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

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)