~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/field_conv.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
313
313
static void do_field_enum(Copy_field *copy)
314
314
{
315
315
  if (copy->from_field->val_int() == 0)
316
 
    ((Field_enum *) copy->to_field)->store_type((ulonglong) 0);
 
316
    ((Field_enum *) copy->to_field)->store_type((uint64_t) 0);
317
317
  else
318
318
    do_field_string(copy);
319
319
}