~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/log_event.cc

  • Committer: Monty Taylor
  • Date: 2008-10-16 18:20:51 UTC
  • mfrom: (511.2.7 more-warnings)
  • mto: This revision was merged to the branch mainline in revision 521.
  • Revision ID: monty@inaugust.com-20081016182051-iope4f1pjm2uqev2
Merged in more warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
#define log_cs  &my_charset_utf8_general_ci
35
35
 
36
 
#define FLAGSTR(V,F) ((V)&(F)?#F" ":"")
37
 
 
38
 
 
39
 
/*
40
 
  Size of buffer for printing a double in format %.<PREC>g
41
 
 
42
 
  optional '-' + optional zero + '.'  + PREC digits + 'e' + sign +
43
 
  exponent digits + '\0'
44
 
*/
45
 
#define FMT_G_BUFSIZE(PREC) (3 + (PREC) + 5 + 1)
46
 
 
47
36
 
48
37
static const char *HA_ERR(int i)
49
38
{