~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/int.cc

  • Committer: Mark Atwood
  • Date: 2009-01-08 23:29:00 UTC
  • mto: (779.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 784.
  • Revision ID: me@mark.atwood.name-20090108232900-yg03vfahncfabbf2
add syslog based logging plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
  char *end_ptr= (char*) str_arg + length;
33
33
  int error;
34
34
  value= my_strtoll10(str_arg, &end_ptr, &error);
35
 
  max_length= (uint32_t) (end_ptr - str_arg);
 
35
  max_length= (uint) (end_ptr - str_arg);
36
36
  name= (char*) str_arg;
37
37
  fixed= 1;
38
38
}