~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_reporting.cc

  • Committer: Brian Aker
  • Date: 2008-11-04 15:39:09 UTC
  • mfrom: (575.1.2 devel)
  • Revision ID: brian@tangent.org-20081104153909-c72hn65udxs1ccal
Merge of Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include <drizzled/server_includes.h>
2
2
#include "rpl_reporting.h"
 
3
#include <drizzled/gettext.h>
3
4
 
4
5
void
5
6
Slave_reporting_capability::report(loglevel level, int err_code,
8
9
  void (*report_function)(const char *, ...);
9
10
  char buff[MAX_SLAVE_ERRMSG];
10
11
  char *pbuff= buff;
11
 
  uint pbuffsize= sizeof(buff);
 
12
  uint32_t pbuffsize= sizeof(buff);
12
13
  va_list args;
13
14
  va_start(args, msg);
14
15