~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/time.cc

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
722
722
  const char *type_str;
723
723
  CHARSET_INFO *cs= &my_charset_latin1;
724
724
  char buff[128];
725
 
  String str(buff,(uint32) sizeof(buff), system_charset_info);
 
725
  String str(buff,(uint32_t) sizeof(buff), system_charset_info);
726
726
  str.copy(str_val, str_length, system_charset_info);
727
727
  str[str_length]= 0;               // Ensure we have end 0 for snprintf
728
728